-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.5 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.5 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
{
"version": "0.16.0",
"name": "@remie/acdeploy",
"description": "Automatic Container Deployment (acdeploy): keeping you cool while deploying",
"bin": {
"acdeploy": "./dist/index.js"
},
"scripts": {
"clean": "npx rimraf dist",
"lint": "npx tslint --project tsconfig.json",
"build": "npm run clean && npm run lint && npx tsc --project tsconfig.json && npm run chmod",
"chmod": "node -e 'require(\"fs\").chmodSync(\"./dist/index.js\", 0o755);'",
"start": "npx nodemon -e ts -w src --exec 'npm run build'",
"prepack": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://remie@github.com/remie/acdeploy.git"
},
"author": "Remie Bolte <r.bolte@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/bunyan": "^1.8.6",
"@types/bunyan-format": "^0.2.0",
"@types/fs-extra": "^7.0.0",
"@types/ini": "^1.3.30",
"@types/inquirer": "0.0.42",
"@types/lodash.merge": "^4.6.6",
"@types/minimist": "^1.2.0",
"@types/node": "^9.4.7",
"@types/semver": "^6.0.0",
"@types/yamljs": "^0.2.30",
"tslint": "^5.2.0",
"typescript": "^2.9.2"
},
"dependencies": {
"@gdn/envify-nconf": "^1.0.3",
"aws-sdk": "^2.466.0",
"bunyan": "^1.8.12",
"bunyan-format": "^0.2.1",
"fs-extra": "^6.0.1",
"ini": "^1.3.5",
"inquirer": "^6.0.0",
"json-to-pretty-yaml": "^1.2.2",
"lodash.merge": "^4.6.1",
"minimist": "^1.2.0",
"semver": "^5.5.1",
"slugify": "^1.3.0",
"yamljs": "^0.3.0"
}
}