-
-
Notifications
You must be signed in to change notification settings - Fork 195
/
package.json
60 lines (60 loc) · 1.45 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
{
"name": "apicache",
"version": "1.6.3",
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "nyc mocha $(find test -name '*.test.js') --recursive",
"test:watch": "npm run test -- --watch",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"prepublish": "npm run test"
},
"engines": {
"node": ">=8"
},
"description": "An ultra-simplified API response caching middleware for Express/Node using plain-english durations.",
"main": "./src/apicache.js",
"repository": {
"type": "git",
"url": "https://github.com/kwhitley/apicache.git"
},
"keywords": [
"cache",
"API",
"redis",
"memcache",
"response",
"express",
"JSON",
"duration",
"middleware",
"memory"
],
"author": "Kevin R. Whitley <[email protected]> (http://krwhitley.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/kwhitley/apicache/issues",
"email": "[email protected]"
},
"devDependencies": {
"chai": "^4.2.0",
"compression": "^1.7.4",
"coveralls": "^3.0.6",
"eslint": "^4.18.0",
"express": "^4.17.1",
"fakeredis": "^2.0.0",
"husky": "^3.0.4",
"mocha": "^7.0.0",
"nyc": "^13.3.0",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"restify": "^7.7.0",
"restify-etag-cache": "^1.0.12",
"supertest": "^4.0.2"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && npm run test"
}
}
}