-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
25 lines (25 loc) · 971 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
{
"name": "js-umbrella-application",
"description": "",
"version": "1.0.0",
"author": "Michael Dimmitt <[email protected]>",
"contributors": [],
"repository": {
"type": "git",
"url": "git://https://github.com/MichaelDimmitt/potentially_dangerout_js_umbrella_application.git"
},
"bugs": "http://github.com/MichaelDimmitt/potentially_dangerout_js_umbrella_application/issues",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"dependencies": {},
"devDependencies": {},
"scripts": {
"install": "bash -c 'for d in ./*/; do (cd $d && npm install &>/dev/null &); done;'",
"start": "bash -c 'for d in ./*/; do (cd $d && npm start &>/dev/null &); done;'",
"stop": "bash -c 'kill $(jobs -p);'",
"alternate": "bash -c 'directory=${PWD##*/../}; for d in $directory/*/; do (cd $d && echo $d); done;'",
"test": ""
},
"main": "./server"
}