forked from ant-tool/atool-build
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.01 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
{
"name": "atool-build",
"version": "0.6.1",
"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"
},
"scripts": {
"build": "rm -rf lib && babel src --out-dir lib --ignore __tests__",
"test": "babel-node node_modules/.bin/babel-istanbul cover node_modules/.bin/_mocha --no-timeouts",
"debug": "./node_modules/.bin/mocha --require babel-core/register --require babel-polyfill --no-timeouts",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"lint": "eslint --ext .js src"
},
"pre-commit": [
"lint"
],
"dependencies": {
"babel-core": "6.6.x",
"babel-core-resolve-enhance": "~0.1.2",
"babel-loader": "~6.2.0",
"babel-plugin-add-module-exports": "~0.1.2",
"babel-plugin-typecheck": "~3.5.1",
"babel-preset-es2015": "6.6.x",
"babel-preset-react": "6.5.x",
"babel-preset-stage-0": "6.5.x",
"commander": "~2.9.0",
"css-loader": "~0.23.0",
"extract-text-webpack-plugin": "~1.0.1",
"file-loader": "~0.8.4",
"json-loader": "~0.5.4",
"less": "~2.6.0",
"less-loader": "~2.2.0",
"map-json-webpack-plugin": "~1.1.0",
"postcss-loader": "~0.8.0",
"rimraf": "~2.5.0",
"url-loader": "~0.5.6",
"webpack": "~1.12.2",
"rucksack-css": "~0.8.5",
"chalk": "^1.1.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4"
},
"devDependencies": {
"babel-cli": "6.6.x",
"babel-istanbul": "0.6.x",
"babel-polyfill": "6.6.x",
"coveralls": "~2.11.4",
"eslint": "~1.10.3",
"eslint-config-airbnb": "~3.1.0",
"glob": "~6.0.4",
"expect": "~1.13.4",
"mocha": "~2.3.4",
"pre-commit": "~1.1.2",
"i18n-webpack-plugin": "^0.2.7"
},
"babel": {
"presets": [
"es2015",
"stage-0"
],
"plugins": [
"add-module-exports"
]
}
}