-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.52 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "cache-all",
"version": "2.1.1",
"description": "Fast, efficient cache engines for both express routes cache & native node (redis, in-memory & file cache)",
"main": "./memory.js",
"scripts": {
"lint": "eslint ./src --fix",
"test": "nyc mocha ./test/*.spec.js --exit",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"npm run lint",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/bahung1221/cache-all.git"
},
"keywords": [
"cache",
"express-cache",
"node-cache",
"redis-cache",
"memcached",
"file-cache",
"route-cache"
],
"author": "Nguyen Ba Hung <bahung1221@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/bahung1221/cache-all/issues"
},
"homepage": "https://github.com/bahung1221/cache-all#readme",
"dependencies": {
"fs-extra": "^8.1.0",
"lru-cache": "^5.1.1",
"redis": "^3.0.2",
"sanitize-filename": "^1.6.2"
},
"devDependencies": {
"@types/express": "^4.17.2",
"@types/redis": "^2.8.14",
"coveralls": "^3.0.6",
"eslint": "^5.16.0",
"eslint-config-standard": ">=12.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^3.0.5",
"lint-staged": "^9.2.5",
"mocha": "^5.2.0",
"nyc": "^14.1.1"
}
}