-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.54 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.54 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
52
53
54
55
56
57
{
"name": "@ambientum/cli",
"version": "0.1.1",
"title": "Ambientum CLI",
"slug": "ambientum-cli",
"description": "Ambientum",
"main": "bin/amb",
"repository": "https://github.com/ambientum/cli",
"author": "Diego Hernandes <iamhernandev@gmail.com>",
"license": "MIT",
"private": false,
"scripts": {
"clear": "rimraf ./dist && rimraf out/amb-*",
"lint": "tslint --fix lib/**/*.ts",
"babel": "babel lib --out-dir dist --extensions .ts,.tsx,.js",
"build": "npm run clear && npm run babel",
"start": "nodemon",
"generate": "npm run build && pkg -t node14-macos,node14-linux,node14-win bin/amb --out-path out"
},
"pkg": {
"scripts": [
"dist/**/*.js"
]
},
"bin": {
"amb": "bin/amb"
},
"dependencies": {
"@babel/runtime": "^7.3.1",
"chalk": "^2.4.2",
"configstore": "^5.0.0",
"dockerode": "^2.5.8",
"enquirer": "^2.3.0",
"lodash": "^4.17.11",
"meow": "^6.0.0",
"yaml": "^1.3.2"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-typescript": "^7.1.0",
"@types/dockerode": "^2.5.12",
"@types/lodash": "^4.14.120",
"@types/meow": "^5.0.0",
"@types/node": "^11.9.0",
"@types/yaml": "^1.0.2",
"babel-plugin-module-resolver": "^3.2.0",
"nodemon": "^1.18.10",
"pkg": "^4.3.7",
"rimraf": "^2.6.3",
"tslint": "^5.12.1",
"typescript": "^3.3.3"
}
}