-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.12 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.12 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
44
45
46
47
{
"name": "initial-cli",
"version": "1.1.0",
"description": "Initialize project command",
"main": "dist/index.js",
"bin": {
"initial": "./dist/index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rimraf ./dist",
"build": "npm run clean && babel -d ./dist ./src",
"prestart": "npm run build",
"start": "node ./dist/index.js",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hans00/initial-cli.git"
},
"keywords": [
"initialize",
"cli",
"project",
"template"
],
"author": "Hans <admin@itsrv.tw>",
"license": "MIT",
"bugs": {
"url": "https://github.com/hans00/initial-cli/issues"
},
"homepage": "https://github.com/hans00/initial-cli#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2017": "^6.24.1"
},
"dependencies": {
"chalk": "^2.4.1",
"cli-spinner": "^0.2.8",
"fs-extra": "^7.0.1",
"glob": "^7.1.3",
"inquirer": "^6.2.0",
"rimraf": "^2.6.2",
"string-format": "^2.0.0"
}
}