-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.4 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.4 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
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "dev-cli",
"version": "0.3.0",
"description": "A convenient development tools",
"main": "index.js",
"scripts": {
"dev": "babel src --out-dir dest -w",
"start": "node dest/index.js",
"compile": "rm -rf dest && babel src --out-dir dest",
"lint": "eslint src",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"hot",
"dev",
"node"
],
"bin": {
"dev": "dest/index.js"
},
"files": [
"dest",
"index.js"
],
"repository": {
"type": "https",
"url": "git+https://github.com/mengdu/dev-cli.git"
},
"homepage": "https://github.com/mengdu/dev-cli",
"author": {
"name": "lanyue",
"email": "lanyueos@qq.com"
},
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-plugin-transform-builtin-extend": "^1.1.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"eslint": "^4.19.1"
},
"dependencies": {
"babel-runtime": "^6.26.0",
"browser-sync": "^2.26.3",
"colors": "^1.3.2",
"commander": "^4.1.1",
"dotenv": "^8.0.0",
"execa": "^1.0.0",
"inquirer": "^6.2.0",
"koa": "^2.11.0",
"koa-static": "^5.0.0",
"opn": "^5.4.0"
}
}