-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 983 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
35
36
37
38
{
"name": "ng-start-cli",
"version": "1.0.6",
"description": "",
"main": "bin/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "babel-node ./src/index.js",
"build": "babel src --out-dir bin --ignore test.js",
"deploy-local": "cp -Rv ./* $(which ng-start-cli)/../../ ",
"prepublish":"npm run build"
},
"bin": {
"ng-start-cli": "bin/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bcguan2008/ng-start-cli.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/bcguan2008/ng-start-cli/issues"
},
"homepage": "https://github.com/bcguan2008/ng-start-cli#readme",
"devDependencies": {
"babel-preset-es2015": "^6.9.0",
"babel-cli": "^6.10.1"
},
"dependencies": {
"child_process": "^1.0.2",
"colors": "^1.1.2",
"commander": "~2.9.0",
"inquirer": "~1.1.3",
"rx": "~4.1.0",
"vinyl-fs": "~2.2.1"
}
}