-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.21 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
{
"name": "docker-container-proxy",
"version": "0.0.0",
"description": "command line tool for proxying docker containers easily",
"main": "dockerproxy.js",
"scripts": {
"test-ci": "npm run pre-test && npm run test",
"pre-test": "npm link",
"test": "bats test",
"release": "semantic-release",
"format": "npx prettier --write ./*"
},
"repository": "https://github.com/DanielHabenicht/dockerproxy",
"keywords": [
"docker",
"proxy",
"container"
],
"author": "Daniel Habenicht",
"license": "MIT",
"bin": {
"dockerproxy": "dockerproxy.js"
},
"bugs": {
"url": "https://github.com/DanielHabenicht/dockerproxy/issues"
},
"homepage": "https://github.com/DanielHabenicht/dockerproxy#readme",
"dependencies": {
"chalk": "4.1.2",
"commander": "8.2.0",
"inquirer": "8.2.0",
"node-cmd": "5.0.0"
},
"devDependencies": {
"semantic-release": "^18.0.0",
"@semantic-release/changelog": "^6.0.0",
"@semantic-release/commit-analyzer": "^9.0.1",
"@semantic-release/exec": "^6.0.1",
"@semantic-release/github": "^8.0.1",
"@semantic-release/release-notes-generator": "^10.0.2",
"@semantic-release/npm": "^8.0.0",
"bats": "^1.4.1"
}
}