-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
90 lines (90 loc) Β· 2.58 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
83
84
85
86
87
88
89
90
{
"name": "baker",
"version": "0.7.2",
"description": "baker creates ansible powered virtual machines",
"engines": {
"node": ">=7.10.0"
},
"main": "baker.js",
"scripts": {
"test": "mocha test/bake/*.js",
"int-test": "mocha test/integration/*.js",
"commit": "git-cz",
"release": "standard-version",
"build-macos": "pkg --targets node10-macos-x64 --output ./installers/macos/bin/baker ./package.json",
"build-win": "pkg --targets node10-win-x64 --output ./installers/win/bin/baker.exe ./package.json",
"build-linux": "pkg --targets node10-linux-x64 --output ./installers/linux/executable/baker ./package.json",
"package-macos": "npm run build-macos && ./installers/macos/package.sh",
"package-linux": "npm run build-linux && cp ./installers/linux/executable/baker ./installers/linux/deb-template/baker/usr/bin/baker && dpkg --build installers/linux/deb-template/baker && mv ./installers/linux/deb-template/baker.deb ./installers/linux/deb/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ottomatica/Baker.git"
},
"keywords": [
"baker",
"ansible",
"configuration"
],
"author": "Ottomatica",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ottomatica/Baker/issues"
},
"homepage": "https://getbaker.io/",
"dependencies": {
"bluebird": "^3.7.2",
"chalk": "^3.0.0",
"configstore": "^5.0.1",
"console.table": "^0.10.0",
"digitalocean": "^1.1.1",
"dockerode": "^3.1.0",
"download": "^7.1.0",
"fs-extra": "^8.1.0",
"hasbin": "^1.2.3",
"inquirer": "^7.0.4",
"js-yaml": "^3.13.1",
"jsonfile": "^5.0.0",
"md5-file": "^4.0.0",
"mustache": "^4.0.0",
"netaddr": "^1.1.0",
"node-powershell": "^4.0.0",
"node-vagrant": "^1.4.0",
"node-virtualbox": "^0.2.3",
"ora": "^4.0.3",
"ping": "^0.2.2",
"prompt": "^1.0.0",
"request": "^2.88.2",
"scp2": "^0.5.0",
"simple-git": "^1.131.0",
"slash": "^3.0.0",
"ssh2": "^0.8.7",
"underscore": "^1.9.2",
"validator": "^12.2.0",
"yargs": "^15.1.0"
},
"pkg": {
"assets": [
"config/**",
"remotes",
"node_modules/node-virtualbox/config/**"
],
"scripts": "lib/**"
},
"bin": "baker.js",
"devDependencies": {
"chai": "^4.1.2",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^3.1.0",
"grunt": "^1.0.4",
"innosetup-compiler": "^5.6.1",
"mocha": "^7.0.1",
"pkg": "^4.4.3",
"standard-version": "^7.1.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}