forked from kwhitley/apicache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.02 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": "apicache",
"version": "0.7.2",
"scripts": {
"test": "redis-server & mocha $(find test -name '*.test.js') --recursive",
"dev": "npm run test -- --watch",
"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": "^3.5.0",
"express": "^4.14.0",
"mocha": "^3.0.2",
"redis": "^2.6.3",
"supertest": "^2.0.0"
},
"dependencies": {}
}