-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 940 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 940 Bytes
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": "http-disk-cache",
"version": "0.7.1",
"description": "An HTTP client that maintains a persistent disk-based cache",
"homepage": "https://github.com/artillery/node-http-disk-cache#readme",
"author": "Mark Logan <mark@artillery.com>",
"license": "MIT",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/nodeunit test.js"
},
"keywords": [
"http cache",
"http",
"cache",
"stream"
],
"engines": {
"node": ">=0.12"
},
"repository": {
"type": "git",
"url": "git+https://github.com/artillery/node-http-disk-cache.git"
},
"bugs": {
"url": "https://github.com/artillery/node-http-disk-cache/issues"
},
"devDependencies": {
"nodeunit": "^0.9.1",
"commander": "^2.9.0",
"temp": "^0.8.3"
},
"dependencies": {
"artillery-async": "^1.0.2",
"debug": "^2.2.0",
"glob": "^6.0.1",
"mkdirp": "^0.5.1",
"request": "^2.65.0"
}
}