-
Notifications
You must be signed in to change notification settings - Fork 280
/
package.json
107 lines (107 loc) · 2.61 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "redbird",
"version": "1.0.2",
"description": "A reverse proxy with support for dynamic tables",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"source": "./lib/index.ts",
"scripts": {
"test": "vitest",
"build": "tsc",
"format": "prettier --write *.js \"{samples,lib,test,hl-tests}/**/*.js\"",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git://github.com/OptimalBits/redbird.git"
},
"files": [
"dist"
],
"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": {
"dolphin": "*",
"greenlock": "^2.8.9",
"http-proxy": "^1.18.0",
"le-challenge-fs": "^2.0.9",
"le-store-certbot": "^2.2.3",
"lodash": "^4.17.21",
"lru-cache": "^11.0.1",
"mkdirp": "^3.0.1",
"node-etcd": "^7.0.0",
"object-hash": "^3.0.0",
"pino": "^9.4.0",
"safe-timers": "^1.1.0",
"valid-url": "^1.0.9"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.3.4",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.1",
"@types/http-proxy": "^1.17.15",
"@types/lodash": "^4.17.7",
"@types/node": "^22.5.4",
"@types/object-hash": "^3.0.6",
"@types/safe-timers": "^1.1.2",
"@types/valid-url": "^1.0.7",
"gulp": "^5.0.0",
"gulp-eslint": "^6.0.0",
"node-fetch": "^3.3.2",
"prettier": "^2.0.1",
"tslib": "^2.7.0",
"typescript": "^5.6.2",
"vitest": "^2.0.5"
},
"prettier": {
"printWidth": 100,
"singleQuote": true
},
"release": {
"plugins": [
[
"@semantic-release/commit-analyzer"
],
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogFile": "docs/CHANGELOG.MD"
}
],
[
"@semantic-release/npm",
{
"npmPublish": true
}
],
"@semantic-release/github",
[
"@semantic-release/git",
{
"assets": [
"package.json",
"yarn.lock",
"docs/CHANGELOG.MD"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
}
}