This repository has been archived by the owner on Jun 22, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 1.95 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
{
"name": "rocketry",
"version": "0.9.2",
"description": "Deployment script for public websites",
"license": "MIT",
"author": "Ev Haus",
"homepage": "https://github.com/EvHaus/rocketry#readme",
"repository": {
"type": "git",
"url": "[email protected]:EvHaus/rocketry.git"
},
"bugs": {
"url": "https://github.com/EvHaus/rocketry/issues"
},
"bin": "./bin/index.js",
"scripts": {
"build": "babel src -d bin",
"eslint": "eslint-globex src",
"flow": "flow",
"flow-typed:update": "rm -rf flow-typed && flow-typed install --ignoreDeps dev",
"jest": "jest",
"jest:coverage": "jest --coverage",
"lint": "yarn packagelint && yarn eslint",
"packagelint": "prettier-package-json --use-tabs --write ./package.json",
"prepare": "yarn build",
"release": "yarn test && git push --follow-tags origin master && npm publish",
"start": "babel-node ./src run -D example --debug",
"test": "yarn flow && yarn lint && yarn jest",
"test:ci": "yarn flow && yarn lint && yarn jest:coverage"
},
"dependencies": {
"@hapi/joi": "^17.1.1",
"archiver": "^5.0.2",
"chalk": "^4.1.0",
"commander": "^7.0.0",
"cosmiconfig": "^7.0.0",
"glob": "^7.1.6",
"inquirer": "^8.0.0",
"node-ssh": "^11.1.1",
"ora": "^5.1.0"
},
"devDependencies": {
"@babel/cli": "^7.12.0",
"@babel/core": "^7.12.0",
"@babel/node": "^7.10.5",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.12.0",
"@babel/preset-flow": "^7.10.4",
"eslint-config-globex": "^5.3.1",
"flow-bin": "^0.152.0",
"flow-typed": "^3.2.1",
"jest": "^27.0.1",
"prettier-package-json": "^2.5.0"
},
"keywords": [
"automation",
"continuous",
"continuous-delivery",
"deliver",
"delivery",
"deploy",
"deployer",
"deployment",
"digitalocean",
"droplet",
"integration",
"launch",
"linode",
"node",
"nodejs",
"release",
"rocket",
"rocketry",
"script"
],
"engines": {
"node": ">=10.0.0"
},
"publishConfig": {
"access": "public"
}
}