-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.52 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
{
"name": "dora-plugin-webpack-hmr",
"version": "0.2.1",
"repository": {
"type": "git",
"url": "https://github.com/dora-js/dora-plugin-webpack-hmr"
},
"homepage": "https://github.com/dora-js/dora-plugin-webpack-hmr",
"author": "chencheng <[email protected]>",
"license": "MIT",
"main": "./lib",
"scripts": {
"build": "rm -rf lib && babel src --out-dir lib --ignore __tests__",
"test": "mocha --require babel-core/register --no-timeouts",
"lint": "eslint --ext .js src"
},
"dependencies": {
"babel-core-resolve-enhance": "~0.1.1",
"babel-runtime": "^6.11.6",
"webpack-hot-middleware": "^2.10.0"
},
"devDependencies": {
"atool-build": "0.x",
"babel-cli": "^6.6.5",
"babel-core": "^6.7.4",
"babel-eslint": "^6.0.2",
"babel-plugin-add-module-exports": "~0.1.1",
"babel-plugin-transform-runtime": "^6.12.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"dora": "0.x",
"dora-plugin-webpack": "0.x",
"eslint": "^2.7.0",
"eslint-config-airbnb": "^6.2.0",
"expect": "^1.16.0",
"mocha": "^2.4.5",
"pre-commit": "~1.1.2",
"react": "^0.14.3",
"react-dom": "^0.14.3",
"supertest": "^1.1.0"
},
"peerDependencies": {
"atool-build": "0.x",
"dora-plugin-webpack": "0.x",
"dora": "0.4.x"
},
"babel": {
"presets": [
"es2015",
"stage-0"
],
"plugins": [
"add-module-exports",
"transform-runtime"
]
},
"files": [
"lib",
"package.json",
"README.md"
]
}