-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.5 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": "letsencrypt-docker-proxy",
"version": "0.0.1",
"description": "A docker proxy that will pull vhosts from linked images, get ssl certs from letsencrypt for them, then redirect https traffic to linked image",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "npm run lint && npm run unit",
"unit": "nyc --all tape ./test/*.test.js | faucet && nyc report",
"lint": "semistandard --verbose | snazzy",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/cinderfish/letsencrypt-docker-proxy.git"
},
"keywords": [
"docker",
"letsencrypt",
"https",
"ssl",
"proxy"
],
"author": "Shaun Burdick <github@shaunburdick.com>",
"license": "GPL-3.0",
"engine": {
"node": "^4.0.0"
},
"bugs": {
"url": "https://github.com/cinderfish/letsencrypt-docker-proxy/issues"
},
"homepage": "https://github.com/cinderfish/letsencrypt-docker-proxy#readme",
"dependencies": {
"http-proxy": "^1.14.0",
"letsencrypt-express": "^1.1.5",
"morgan": "^1.7.0",
"spdy": "^3.3.3",
"superagent": "^2.0.0",
"winston": "^2.2.0"
},
"devDependencies": {
"coveralls": "^2.11.9",
"faucet": "0.0.1",
"nyc": "^6.6.1",
"semistandard": "^8.0.0",
"snazzy": "^4.0.0",
"supertest": "^1.2.0",
"tape": "^4.6.0"
},
"semistandard": {
"ignore": [
"coverage"
]
},
"nyc": {
"include": [
"lib/**/*.js"
]
}
}