-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.23 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
{
"version": "0.0.0-development",
"name": "@cachepile/middleware",
"description": "CachePile Express Middleware",
"author": "Ahmad Nassri <[email protected]> (https://www.ahmadnassri.com/)",
"homepage": "https://github.com/cachepile/middleware",
"repository": {
"type": "git",
"url": "https://github.com/cachepile/middleware.git"
},
"license": "ISC",
"main": "lib/proxy.js",
"keywords": [
"cachepile",
"cache",
"http",
"rest",
"proxy"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=6"
},
"files": [
"lib"
],
"bugs": {
"url": "https://github.com/cachepile/middleware/issues"
},
"scripts": {
"pretest": "npm run test:codeclimate",
"test": "npm run test:tap",
"test:codeclimate": ".scripts/codeclimate analyze",
"test:tap": "tap test --100 --coverage-report=lcov --no-browser",
"coverage": "opener coverage/lcov-report/index.html"
},
"devDependencies": {
"express": "^4.16.3",
"sinon": "^5.0.10",
"tap": "^12.0.1"
},
"dependencies": {
"body-parser": "^1.18.3",
"compression": "^1.7.2",
"follow-redirects": "^1.5.0",
"redis": "^2.8.0"
},
"peerDependencies": {
"express": "^4.16.2"
}
}