forked from abeisgoat/firepit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 831 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
28
29
30
31
32
33
34
{
"name": "firepit",
"version": "0.2.0-dev",
"description": "",
"main": "index.js",
"scripts": {
"fmt": "prettier --write *.js",
"pkg": "pkg -c package.json firepit.js --out-path dist/ && chmod +x dist/firepit-*",
"ship": "gsutil -m cp dist/* gs://fir-tools-builds/firepit/ && gsutil iam ch allUsers:objectViewer gs://fir-tools-builds"
},
"author": "",
"license": "ISC",
"dependencies": {
"chalk": "^2.4.2",
"npm": "^6.10.2",
"shelljs": "^0.8.3",
"user-home": "^2.0.0"
},
"pkg": {
"scripts": [
"node_modules/npm/src/**/*.js"
],
"assets": [
"node_modules/.bin/**",
"node_modules/npm/bin/**/*",
"node_modules/npm/node_modules/node-gyp/**/*",
"vendor/**"
]
},
"devDependencies": {
"pkg": "^4.3.8",
"prettier": "^1.15.3"
}
}