forked from ibigbug/antd-build
-
Notifications
You must be signed in to change notification settings - Fork 74
/
package.json
87 lines (87 loc) · 2.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "atool-build",
"version": "2.0.0-alpha.12",
"description": "Build tool based on webpack",
"repository": {
"type": "git",
"url": "https://github.com/ant-tool/atool-build"
},
"homepage": "https://github.com/ant-tool/atool-build",
"author": "chencheng <[email protected]>",
"license": "MIT",
"bin": {
"atool-build": "./bin/atool-build"
},
"files": [
"bin",
"lib",
"assets"
],
"scripts": {
"build": "rm -rf lib && babel src --out-dir lib",
"test": "babel-node $(npm bin)/babel-istanbul cover $(npm bin)/_mocha -- --no-timeouts",
"debug": "$(npm bin)/mocha --require babel-core/register --no-timeouts",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"lint": "eslint --ext .js src",
"pub": "npm run build && npm publish && rm -rf lib && git push origin"
},
"pre-commit": [
"lint"
],
"dependencies": {
"atool-monitor": "0.x",
"autoprefixer": "^7.1.4",
"babel-core": "^6.24.1",
"babel-loader": "^7.1.2",
"babel-plugin-add-module-exports": "~0.2.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015-ie": "^6.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"case-sensitive-paths-webpack-plugin": "^2.0.0",
"chalk": "^2.1.0",
"commander": "~2.11.0",
"css-loader": "~0.28.0",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "~0.11.1",
"friendly-errors-webpack-plugin": "^1.6.1",
"json-loader": "~0.5.4",
"less": "~2.7.2",
"less-loader": "~4.0.5",
"less-plugin-npm-import": "^2.1.0",
"map-json-webpack-plugin": "~1.2.0",
"node-notifier": "^5.1.2",
"postcss": "^6.0.11",
"postcss-loader": "~2.0.6",
"rucksack-css": "~1.0.2",
"ts-loader": "^2.0.3",
"typescript": "^2.2.2",
"url-loader": "~0.5.8",
"webpack": "^3.6.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^8.0.0",
"babel-istanbul": "^0.12.2",
"babel-plugin-hello-world": "^1.0.0",
"coveralls": "~2.13.0",
"eslint": "^4.7.1",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.2.0",
"expect": "^21.1.0",
"glob": "^7.1.1",
"i18n-webpack-plugin": "^1.0.0",
"mocha": "^3.2.0",
"pre-commit": "~1.2.2"
},
"babel": {
"presets": [
"es2015-ie",
"stage-0"
],
"plugins": [
"add-module-exports"
]
}
}