-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·47 lines (47 loc) · 1.02 KB
/
package.json
File metadata and controls
executable file
·47 lines (47 loc) · 1.02 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": "mid-cli",
"version": "0.1.12",
"author": "xudeming",
"email": "xudeming208@126.com",
"description": "A simple CLI for scaffolding mid framework.",
"bin": {
"mid-cli": "bin/index.js",
"midcli": "bin/index.js",
"midc": "bin/index.js",
"mcli": "bin/index.js"
},
"keywords": [
"nodejs",
"mid",
"mvc",
"framework",
"mid-cli"
],
"scripts": {
"lint": "fecs src --type=js --reporter=baidu --rule=true",
"build": "babel src -d lib",
"watch": "npm run build -- -w"
},
"engines": {
"node": ">=7.6.0"
},
"repository": {
"type": "git",
"url": "https://github.com/xudeming208/mid-cli"
},
"license": "MIT",
"dependencies": {
"babel-runtime": "^6.26.0",
"cfonts": "^1.1.3",
"colors": "^1.1.2",
"commander": "^2.11.0",
"nodeopen": "0.0.5"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"fecs": "^1.4.1"
}
}