forked from kwhitley/apicache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 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
45
46
{
"name": "apicache",
"version": "0.0.13",
"description": "An ultra-simplified API/JSON response caching middleware for Express/Node using plain-english durations.",
"main": "./lib/apicache.js",
"repository": {
"type": "git",
"url": "https://github.com/kwhitley/apicache.git"
},
"keywords": [
"cache",
"API",
"response",
"express",
"JSON",
"duration",
"middleware",
"simple",
"memory"
],
"author": "K. R. Whitley <[email protected]> (http://krwhitley.com/)",
"licenses": [
{
"type": "MIT",
"url": "http://en.wikipedia.org/wiki/MIT_License"
}
],
"bugs": {
"url": "https://github.com/kwhitley/apicache/issues"
},
"devDependencies": {
"grunt": "latest",
"nodeunit": "latest",
"grunt-contrib-jshint": "latest",
"grunt-contrib-nodeunit": "latest",
"grunt-contrib-watch": "latest"
},
"scripts": {
"test": "grunt"
},
"dependencies": {
"memory-cache": "0.0.5",
"lodash": "~1.3.1",
"inflection": "~1.2.6"
}
}