-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
126 lines (126 loc) · 3.08 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "dva",
"version": "1.3.0-beta.4",
"description": "React and redux based, lightweight and elm-style framework.",
"repository": {
"type": "git",
"url": "https://github.com/dvajs/dva"
},
"homepage": "https://github.com/dvajs/dva",
"typings": "./index.d.ts",
"keywords": [
"dva",
"ant",
"react",
"react-native",
"mobile",
"redux",
"redux-saga",
"elm",
"framework",
"frontend"
],
"authors": [
"chencheng <[email protected]> (https://github.com/sorrycc)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/dvajs/dva/issues"
},
"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"
},
"nyc": {
"include": [
"src/**/*.js"
],
"require": [
"babel-register",
"./test/setup.js"
],
"sourceMap": false,
"instrument": false
},
"dependencies": {
"@types/isomorphic-fetch": "^0.0.34",
"@types/react-router": "2.x",
"@types/react-router-redux": "^4.0.40",
"babel-runtime": "^6.23.0",
"flatten": "^1.0.2",
"global": "^4.3.2",
"history": "^4.6.0",
"invariant": "^2.2.1",
"is-plain-object": "^2.0.3",
"isomorphic-fetch": "^2.2.1",
"lodash.isfunction": "^3.0.8",
"react-redux": "^5.0.5",
"react-router": "git://github.com/Tsury/react-router#react-16-beta",
"react-router-redux": "^4.0.8",
"redux": "^3.6.0",
"redux-saga": "^0.15.3",
"warning": "^3.0.0"
},
"peerDependencies": {
"react": "15.x"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-istanbul": "^4.1.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.24.1",
"browserify": "^14.4.0",
"browserify-shim": "^3.8.14",
"coveralls": "^2.13.1",
"cross-env": "^5.0.0",
"envify": "^4.0.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1",
"expect": "^1.20.2",
"husky": "^0.13.4",
"jsdom": "^9.5.0",
"mocha": "^3.4.2",
"nyc": "^11.0.1",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"rimraf": "^2.6.1",
"uglifyjs": "^2.4.11"
},
"pre-commit": [
"lint"
],
"browserify-shim": {
"react": "global:React",
"react-dom": "global:ReactDOM"
},
"react-native": {
"react-dom": false
},
"files": [
"lib",
"src",
"dist",
"router.js",
"fetch.js",
"mobile.js",
"index.js",
"saga.js",
"index.d.ts",
"router.d.ts",
"fetch.d.ts",
"mobile.d.ts"
]
}