-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
27 lines (27 loc) · 993 Bytes
/
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
{
"version": "0.1",
"dependencies": {
"ansi-colors": "^3.2.1",
"enquirer": "^2.0.6",
"glob": "^7.1.3",
"ini": "^1.3.6",
"js-yaml": "^3.13.1",
"yargs": "^12.0.2"
},
"devDependencies": {
"nexe": "^2.0.0-rc.34",
"rollup": "^0.67.1",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-node-resolve": "^3.4.0"
},
"scripts": {
"build": "rollup -c rollup.config.js",
"clean-dist": "rm -rf dist/",
"make-dist-dirs": "mkdir -p dist/js && mkdir -p dist/bin",
"dist-js": "echo '#!/usr/bin/env node' | cat - dist/ansible-interactive.js > dist/js/ansible-interactive && chmod +x dist/js/ansible-interactive",
"dist-bin": "nexe -i dist/ansible-interactive.js -o dist/bin/ansible-interactive",
"dist-bin-fresh": "nexe --build -i dist/ansible-interactive.js -o dist/bin/ansible-interactive",
"dist": "yarn run clean-dist && yarn run make-dist-dirs && yarn run build && yarn run dist-js"
}
}