-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 1.07 KB
/
package.json
File metadata and controls
24 lines (24 loc) · 1.07 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
{
"name": "distribution-not-selected",
"description": "Choose a distribution by running 'npm run set-dist <app-template>' followed by 'npm run apply'.",
"primary-package-json": "See the tempate in app-template/package.json",
"pre-commit": "unstage-package",
"changes": "changes to this file can be commited with the --no-verify option",
"scripts": {
"postinstall": "npm run apply && echo && npm run which-dist && echo",
"start": "echo && echo \"Choose a distribution by running 'npm run set-dist <app-template>' followed by 'npm run apply'.\" && echo",
"apply": "npm i fs-extra@0.30 && cd app-template && node apply.js $(cat ../.ows-dist) && cd .. && npm i",
"set-dist": "echo $1 > ./.ows-dist",
"which-dist": "printf 'Distribution set for: ' && cat ./.ows-dist",
"unstage-package": "git reset package.json",
"clean-all": "git clean -dfx"
},
"dependencies": {
"pre-commit": "^1.1.3"
},
"license": "MIT",
"repository": {
"url": "git://github.com/owstack/ows-wallet.git",
"type": "git"
}
}