This repository has been archived by the owner on Nov 15, 2023. It is now read-only.
forked from mpfdavis/outputcache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.58 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
63
64
65
66
67
{
"name": "outputcache",
"version": "5.3.1",
"description": "Cache api responses, react and more using redis, memcached or any other cache provider.",
"main": "bin/outputcache.js",
"scripts": {
"test": "./node_modules/istanbul/lib/cli.js cover ./node_modules/.bin/_mocha",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"compile": "babel src --out-dir bin --presets es2015",
"prepublish": "npm run compile"
},
"repository": {
"type": "git",
"url": "https://github.com/mpfdavis/outputcache"
},
"keywords": [
"redis",
"memcached",
"outputcache",
"api cache",
"apicache",
"response cache",
"request cache",
"output cache",
"route cache",
"redis cache",
"middleware cache",
"http cache",
"html cache",
"json cache",
"react cache",
"render cache",
"node cache",
"express cache",
"connect cache",
"redirect cache",
"lru cache",
"performance",
"cache",
"caching"
],
"author": "Matthew Davis",
"license": "ISC",
"bugs": {
"url": "https://github.com/mpfdavis/outputcache/issues"
},
"homepage": "",
"dependencies": {
"stale-lru-cache": "^5.1.1"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"cookie-parser": "^1.4.1",
"coveralls": "^2.11.6",
"express": "^4.13.4",
"istanbul": "^0.4.2",
"memcached-mock": "^0.1.0",
"mocha": "^2.4.5",
"mock-redis-client": "^0.91.13",
"require-new": "^1.1.0",
"supertest": "^1.1.0"
},
"engines": {
"node": ">=4.4.6"
}
}