-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 1.8 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
{
"name": "deploy.sh",
"version": "2.0.0",
"description": "☁️ open source continuous deployment service",
"main": "index.js",
"type": "module",
"scripts": {
"test": "node --experimental-vm-modules ./node_modules/.bin/jest",
"coverage": "node --experimental-vm-modules ./node_modules/.bin/jest --collect-coverage",
"lint": "eslint .",
"start": "./bin/deploy.js serve",
"pack": "pkg bin/deploy.js -c package.json -o packed/deploy",
"generate-docs": "node generate-docs.js",
"prepare": "husky install",
"release": "release-it"
},
"pkg": {
"scripts": [
"bin/*",
"lib/**/*.js"
],
"assets": [
"lib/static/*"
],
"targets": [
"node16-alpine-x64",
"node16-linux-x64",
"node16-macos-x64",
"node16-win-x64"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/gabrielcsapo/deploy.sh.git"
},
"bin": {
"deploy": "./bin/deploy.js"
},
"engines": {
"node": ">= 16"
},
"homepage": "https://gabrielcsapo.github.io/deploy.sh",
"dependencies": {
"axios": "^0.26.1",
"body-parser": "^1.19.2",
"commander": "^9.0.0",
"dockerode": "^3.3.1",
"express": "^4.17.3",
"form-data": "^4.0.0",
"formidable": "^2.0.1",
"inquirer": "^8.2.1",
"moment": "^2.29.1",
"mongoose": "^6.2.6",
"opn": "^6.0.0",
"ora": "^6.1.0",
"tar": "^6.1.11",
"turtler": "^1.1.1",
"update-notifier": "^5.1.0",
"woof": "^0.4.1"
},
"devDependencies": {
"eslint": "^8.11.0",
"eslint-plugin-jest": "^26.1.1",
"husky": "^7.0.0",
"jest": "^27.5.1",
"jsdoc": "^3.6.10",
"jsdoc-to-markdown": "^7.1.1",
"pkg": "^5.5.2",
"prettier": "^2.5.1",
"pretty-quick": "^3.1.3",
"release-it": "^14.12.5"
},
"volta": {
"node": "16.14.0"
}
}