-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.17 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.17 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "startkit-cli",
"version": "1.0.11",
"description": "Quick start your project",
"main": "dist/startkit.js",
"bin": {
"startkit": "dist/startkit.js"
},
"scripts": {
"start": "set DEBUG=*,-babel && npm run build && node dist/startkit.js",
"build": "babel src -d dist",
"pub": "npm run build && npm publish --registry=http://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sky0014/startkit-cli.git"
},
"keywords": [
"node",
"startkit",
"cli"
],
"author": "sky0014 <sky-wang@qq.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/sky0014/startkit-cli/issues"
},
"homepage": "https://github.com/sky0014/startkit-cli/#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-version-transform": "^1.0.0"
},
"dependencies": {
"commander": "^2.9.0",
"download-github-repo": "^0.1.3",
"promptly": "^2.2.0",
"request": "^2.81.0",
"request-promise-native": "^1.0.4"
}
}