forked from kwhitley/apicache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.3 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
{
"name": "apicache",
"version": "1.2.3",
"scripts": {
"lint": "eslint **/*.js",
"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": ">=4.0.0"
},
"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.1.2",
"compression": "^1.7.2",
"coveralls": "^3.0.0",
"eslint": "^4.18.2",
"express": "^4.16.2",
"fakeredis": "^2.0.0",
"mocha": "^5.0.4",
"nyc": "^11.4.1",
"restify": "^6.3.4",
"restify-etag-cache": "^1.0.12",
"supertest": "^3.0.0"
},
"dependencies": {}
}