-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.24 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "superlru",
"description": "Super LRU Cache. Compression, Encryption and backed by Redis",
"version": "1.1.1",
"author": {
"name": "jayson jacobs",
"email": "[email protected]"
},
"repository": "j4ys0n/superlru",
"bugs": "https://github.com/j4ys0n/superlru/issues",
"homepage": "https://github.com/j4ys0n/superlru",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"redis": "^4.0.4",
"tslib": "^2.3.1"
},
"devDependencies": {
"@types/jest": "^24.0.23",
"@types/node": "^16.15",
"@typescript-eslint/eslint-plugin": "^2.10.0",
"@typescript-eslint/parser": "^2.10.0",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-prettier": "^3.1.1",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"ts-jest": "^24.2.0",
"typescript": "^4.7.4"
},
"engines": {
"node": ">=16.0.0"
},
"license": "Apache-2.0",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"lint": "eslint . --ext .ts --config .eslintrc",
"build": "rm -rf lib && tsc -b",
"test": "jest --config jest.config.json",
"format": "git ls-files | grep -E \"\\.(jsx?|tsx?|css|md|ya?ml|json)$\" | xargs prettier --write"
}
}