-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
68 lines (68 loc) · 1.77 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
{
"name": "dora-plugin-webpack",
"version": "1.0.0",
"description": "dora plugin for webpack",
"repository": {
"type": "git",
"url": "https://github.com/dora-js/dora-plugin-webpack"
},
"homepage": "https://github.com/dora-js/dora-plugin-webpack",
"author": "chencheng <[email protected]>",
"license": "MIT",
"main": "./lib",
"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": {
"chalk": "^1.1.1",
"chokidar": "^1.7.0",
"koa-webpack-dev-middleware": "^1.4.6",
"lodash.isequal": "^4.5.0",
"npm-install-webpack-plugin-cn": "^2.0.2"
},
"devDependencies": {
"atool-build": "^1.0.0",
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-istanbul": "^0.12.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"coveralls": "^2.13.1",
"dora": "^0.4.3",
"eslint": "^4.0.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-import": "^2.3.0",
"expect": "^1.13.4",
"mocha": "^3.4.2",
"pre-commit": "^1.2.2",
"request": "^2.81.0"
},
"peerDependencies": {
"atool-build": "1.x",
"dora": "0.4.x"
},
"babel": {
"presets": [
"es2015",
"stage-0"
],
"plugins": [
"add-module-exports"
]
},
"files": [
"lib",
"package.json",
"README.md"
]
}