forked from OptimalBits/redbird
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.64 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.64 KB
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
{
"name": "@artcodestudio/redbird",
"version": "0.13.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\"",
"publish:latest": "npm publish --access public --tag latest"
},
"repository": {
"type": "git",
"url": "git@github.com:ArtCodeStudio/redbird.git"
},
"files": [
"index.js",
"lib",
".greenlockrc"
],
"keywords": [
"proxy",
"reverse",
"docker",
"etcd"
],
"author": "Manuel Astudillo",
"license": "BSD-3-Clause-Attribution",
"bugs": {
"url": "https://github.com/ArtCodeStudio/redbird/issues"
},
"homepage": "https://github.com/ArtCodeStudio/redbird",
"dependencies": {
"@greenlock/manager": "^3.1.0",
"@root/greenlock": "^4.0.5",
"app-root-path": "^3.0.0",
"bluebird": "^3.7.2",
"dolphin": "latest",
"http-proxy": "^1.18.1",
"lodash": "^4.17.21",
"lru-cache": "^6.0.0",
"node-etcd": "^7.0.0",
"object-hash": "^2.2.0",
"pino": "^7.5.1",
"pino-pretty": "^7.2.0",
"safetimeout": "^0.1.2",
"spdy": "^4.0.2",
"valid-url": "^1.0.9"
},
"devDependencies": {
"chai": "^4.3.4",
"electrode-server": "^3.3.0",
"gulp": "^4.0.2",
"gulp-eslint": "^6.0.0",
"mocha": "^9.1.3",
"needle": "^3.0.0",
"node-gyp": "^8.4.1",
"prettier": "^2.5.1",
"run-verify": "^1.2.6"
},
"peerDependencies": {
"acme-http-01-webroot": "^3.0.0",
"greenlock-store-fs": "^3.2.2"
},
"prettier": {
"printWidth": 100,
"singleQuote": true
}
}