-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 1.75 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "revio",
"version": "0.2.28",
"description": "A reverse proxy server",
"license": "MIT",
"repository": "taoyuan/revio",
"author": {
"name": "Yuan Tao",
"email": "[email protected]",
"url": "github.com/taoyuan"
},
"bin": {
"revio": "./bin/revio.js"
},
"engines": {
"node": ">=6"
},
"main": "./src/index",
"scripts": {
"lint": "eslint .",
"test": "nyc mocha test/**/*.test.js",
"posttest": "npm run lint && nsp check",
"postinstall": "node scripts/npm-post-install",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"keywords": [
"reverse",
"proxy",
"letsencrypt"
],
"dependencies": {
"arrify": "^1.0.1",
"bluebird": "^3.5.0",
"bunyan": "^1.8.10",
"chalk": "^1.1.3",
"commander": "^2.9.0",
"coveralls": "^2.13.1",
"dolphin": "*",
"fs-extra": "^3.0.1",
"glob": "^7.1.2",
"greenlock": "^2.1.15",
"handlebars": "^4.0.10",
"http-proxy": "^1.16.2",
"joi": "^10.5.0",
"js-yaml": "^3.8.4",
"json5": "^0.5.1",
"le-challenge-fs": "^2.0.8",
"le-challenge-sni": "^2.0.1",
"le-sni-auto": "^2.1.1",
"le-store-certbot": "^2.0.5",
"localhost.daplie.me-certificates": "^1.3.2",
"lodash": "^4.17.4",
"lru-cache": "^4.0.2",
"minimatch": "^3.0.4",
"node-alias": "^1.0.4",
"node-etcd": "^5.1.0",
"object-hash": "^1.1.8",
"os-homedir": "^1.0.2",
"safetimeout": "^0.1.1",
"spdy": "^3.4.7",
"url-parse": "^1.1.9",
"valid-url": "^1.0.9"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"eslint": "^3.19.0",
"mocha": "^3.4.1",
"nsp": "^2.6.3",
"nyc": "^10.3.2"
},
"nyc": {
"reporter": [
"lcov",
"text"
]
}
}