-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
61 lines (61 loc) · 1.41 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
55
56
57
58
59
60
61
{
"name": "Component-name",
"version": "0.0.1",
"description": "Best Practice Of Developing Component With Ant-Tool",
"homepage": "http://",
"author": "pigcan <[email protected]>",
"repository": {
"type": "git",
"url": ""
},
"bugs": "issues url",
"main": "./lib/index",
"entry": {
"index": "./index"
},
"scripts": {
"compile": "rm -rf lib && babel src --out-dir lib && lessc src/index.less lib/index.css",
"build": "atool-build",
"lint": "eslint --ext .js src",
"test": "atool-test",
"doc": "atool-doc",
"doc-build": "atool-doc --build",
"gh-pages": "atool-doc --build && gh-pages -d __site"
},
"dependencies": {
},
"devDependencies": {
"atool-build": "~0.8.0",
"atool-doc": "~0.5.0",
"atool-test": "^0.4.5",
"babel-cli": "~6.6.4",
"babel-core": "~6.7.4",
"babel-eslint": "~6.0.2",
"babel-plugin-add-module-exports": "~0.1.2",
"babel-preset-es2015": "~6.6.0",
"babel-preset-react": "~6.5.0",
"babel-preset-stage-0": "~6.5.0",
"dora": "0.3.x",
"gh-pages": "^0.11.0",
"less": "~2.6.0",
"pre-commit": "^1.1.2",
"eslint": "^2.5.3",
"eslint-config-airbnb": "^6.2.0",
"g2": "^2.0.0",
"jquery": "~2.1.4"
},
"babel": {
"presets": [
"es2015",
"react",
"stage-0"
],
"plugins": [
"add-module-exports"
]
},
"pre-commit": [
"lint"
],
"license": "MIT"
}