-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 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
{
"name": "node-http-cache",
"version": "2.3.4",
"description": "This module uses a simple filesystem storage to persist http responses.\nThen you can retrieve those responses from disk instead of an http connection.",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha"
},
"devDependencies": {
"mocha": "^10.2.0",
"should": "13.2.3",
"winston": "3.2.1"
},
"dependencies": {
"cron": "1.8.2",
"debug": "4.3.1",
"level": "6.0.1",
"lodash": "^4.17.21",
"q": "1.5.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neuquino/node-http-cache.git"
},
"author": "Facundo Chambó <[email protected]> (https://github.com/neuquino)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/neuquino/node-http-cache/issues"
},
"engines": {
"node": ">=4.4.x"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"homepage": "https://github.com/neuquino/node-http-cache#readme"
}