forked from OptimalBits/redbird
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.38 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
{
"name": "redbird",
"version": "0.10.0",
"description": "A reverse proxy with support for dynamic tables",
"main": "index.js",
"scripts": {
"test": "mocha test/* --reporter spec",
"format": "prettier --write *.js \"{samples,lib,test,hl-tests}/**/*.js\""
},
"repository": {
"type": "git",
"url": "git://github.com/OptimalBits/redbird.git"
},
"files": [
"index.js",
"lib"
],
"keywords": [
"proxy",
"reverse",
"docker",
"etcd"
],
"author": "Manuel Astudillo",
"license": "BSD-3-Clause-Attribution",
"bugs": {
"url": "https://github.com/OptimalBits/redbird/issues"
},
"homepage": "https://github.com/OptimalBits/redbird",
"dependencies": {
"bluebird": "^2.11.0 || ^3.7.2",
"dolphin": "*",
"greenlock": "^2.8.8",
"http-proxy": "^1.18.0",
"le-challenge-fs": "^2.0.9",
"le-store-certbot": "^2.2.3",
"lodash": "^4.17.15",
"lru-cache": "^5.1.1",
"node-etcd": "^7.0.0",
"object-hash": "^1.3.1",
"pino": "^5.15.0",
"safetimeout": "^0.1.2",
"spdy": "^4.0.1",
"valid-url": "^1.0.9"
},
"devDependencies": {
"chai": "^1.9.1",
"electrode-server": "^2.2.2",
"gulp": "^3.8.11",
"gulp-eslint": "^0.9.0",
"mocha": "^2.5.3",
"needle": "^2.2.4",
"prettier": "^2.0.1",
"run-verify": "^1.2.2"
},
"prettier": {
"printWidth": 100,
"singleQuote": true
}
}