-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
122 lines (122 loc) · 2.95 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
{
"name": "dva",
"version": "1.3.0-beta1",
"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 <sorrycc@gmail.com> (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/react-router-redux": "^4.0.40",
"@types/react-router": "2.x",
"babel-runtime": "^6.11.6",
"flatten": "^1.0.2",
"global": "^4.3.1",
"invariant": "^2.2.1",
"is-plain-object": "^2.0.1",
"isomorphic-fetch": "^2.2.1",
"lodash.isfunction": "^3.0.8",
"react-redux": "4.4.x",
"react-router": "^2.8.1",
"react-router-redux": "^4.0.5",
"redux": "^3.6.0",
"redux-saga": "^0.14.0",
"warning": "^3.0.0"
},
"peerDependencies": {
"react": "15.x",
"react-dom": "15.x"
},
"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",
"react": "^15.3.1",
"react-dom": "^15.3.1",
"rimraf": "^2.5.4",
"uglifyjs": "^2.4.10"
},
"pre-commit": [
"lint"
],
"browserify-shim": {
"react": "global:React",
"react-dom": "global:ReactDOM"
},
"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"
]
}