-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
57 lines (57 loc) · 1.4 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
{
"name": "babel-plugin-dva-hmr",
"version": "0.4.2",
"description": "Hmr plugin for dva.",
"main": "lib/index.js",
"scripts": {
"build": "rm -rf lib && ./node_modules/.bin/babel src --out-dir lib --ignore __tests__",
"test": "NODE_ENV=test nyc mocha --no-timeouts",
"debug": "mocha --require babel-register --no-timeouts",
"lint": "eslint --ext .js src",
"prepublishOnly": "npm run build && np --no-cleanup --yolo --no-publish",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"nyc": {
"include": [
"src/**/*.js"
],
"require": [
"babel-register"
],
"sourceMap": true,
"instrument": false
},
"keywords": [
"dva",
"babel",
"babel-plugin",
"hmr"
],
"author": "chencheng <[email protected]>",
"peerDependencies": {
"redbox-react": "1.x"
},
"devDependencies": {
"babel-cli": "^6.3.13",
"babel-core": "^6.17.0",
"babel-istanbul": "^0.7.0",
"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.3.13",
"babel-register": "^6.16.3",
"coveralls": "^2.11.14",
"eslint": "^2.7.0",
"eslint-config-airbnb": "^6.2.0",
"expect": "^1.20.2",
"mocha": "^2.5.3",
"np": "^5.0.2",
"nyc": "^8.3.1",
"pre-commit": "~1.1.2"
},
"files": [
"lib",
"src"
],
"license": "MIT"
}