-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.11 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
{
"name": "dva-model",
"version": "2.4.1",
"description": "dva.js Model",
"scripts": {
"test": "npm run lint && cross-env NODE_ENV=test nyc mocha --no-timeouts",
"debug": "mocha --require babel-register --require ./test/setup.js --no-timeouts",
"build": "rimraf lib && babel src --out-dir lib",
"lint": "eslint --ext .js src test",
"report": "nyc report --reporter=html",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"-precommit": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Superman-wc/dva-model.git"
},
"keywords": [
"dva.js",
"redux"
],
"author": "Superman-wc",
"license": "ISC",
"bugs": {
"url": "https://github.com/Superman-wc/dva-model/issues"
},
"homepage": "https://github.com/Superman-wc/dva-model#readme",
"dependencies": {
"babel-runtime": "^6.11.6"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-eslint": "^6.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-istanbul": "^2.0.1",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "~6.5.0",
"babel-register": "^6.14.0",
"browserify": "^13.1.0",
"browserify-shim": "^3.8.12",
"coveralls": "^2.11.11",
"cross-env": "^2.0.1",
"envify": "^3.4.1",
"eslint": "^3.12.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.8.0",
"expect": "^1.20.2",
"husky": "^0.12.0",
"jsdom": "^9.5.0",
"mocha": "^3.0.2",
"nyc": "^8.1.0",
"rimraf": "^2.5.4",
"uglifyjs": "^2.4.10"
},
"nyc": {
"include": [
"src/**/*.js"
],
"require": [
"babel-register",
"./test/setup.js"
],
"sourceMap": false,
"instrument": false
},
"pre-commit": [
"lint"
],
"browserify-shim": {
"react": "global:React",
"react-dom": "global:ReactDOM"
},
"files": [
"lib",
"src",
"dist",
"restful.js",
"effect.js",
"index.js"
]
}