-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.24 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "component-add",
"version": "0.1.6",
"description": "component add",
"homepage": "http://github.com/ant-tool/component-add",
"author": "yaya <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/ant-tool/component-add.git"
},
"main": "./lib/index",
"bin": {
"component-add": "./bin/component-add"
},
"scripts": {
"compile": "babel src --out-dir lib --watch",
"lint": "eslint --ext .js src",
"test": "mocha --compilers js:babel-core/register --no-timeouts"
},
"dependencies": {
"atool-monitor": "0.x",
"atool-pack": "^0.2.3",
"colors": "^1.1.2",
"commander": "^2.9.0",
"os-tmpdir": "^1.0.1",
"rimraf": "^2.5.2",
"shelljs": "^0.6.0"
},
"devDependencies": {
"babel-cli": "~6.6.4",
"babel-core": "~6.7.4",
"babel-plugin-add-module-exports": "~0.1.2",
"babel-preset-es2015": "~6.6.0",
"babel-preset-stage-0": "~6.5.0",
"chai": "^3.5.0",
"eslint": "^2.5.3",
"eslint-config-airbnb": "^6.2.0",
"mocha": "^2.4.5",
"pre-commit": "^1.1.2"
},
"babel": {
"presets": [
"es2015",
"stage-0"
],
"plugins": [
"add-module-exports"
]
},
"pre-commit": [
"lint"
],
"license": "MIT"
}