-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.31 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
{
"name": "proxycache",
"version": "1.1.5",
"description": "Web proxy caching for Node",
"license": "MIT",
"repository": "fdesjardins/proxycache",
"author": {
"name": "Forrest Desjardins",
"email": "desjardinsfg@gmail.com",
"url": "github.com/fdesjardins"
},
"engines": {
"node": ">=7.6"
},
"scripts": {
"test": "./node_modules/.bin/eslint *.js && nyc ./node_modules/.bin/mocha --opts mocha.opts test.js"
},
"files": [
"index.js"
],
"keywords": [
"caching",
"proxy",
"proxy cache",
"cloud",
"storage",
"asset",
"file",
"google",
"cdn"
],
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"eslint": "^4.8.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.2.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"express": "^4.16.1",
"mocha": "^4.0.1",
"nyc": "^11.2.1"
},
"dependencies": {
"@google-cloud/storage": "^1.4.0",
"bluebird": "^3.5.1",
"promise-retry": "^1.1.1",
"redis": "^2.8.0",
"superagent": "^3.8.0"
},
"xo": {
"esnext": true,
"rules": {
"no-use-extend-native/no-use-extend-native": 0
}
},
"nyc": {
"reporter": [
"lcov",
"text"
]
}
}