-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.7 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": "ifox",
"version": "0.0.5",
"description": "react redux [email protected]集成框架,简化action,reducer的书写方式,让逻辑更清晰,更容易理解。",
"main": "lib/index",
"module": "es/index",
"jsnext:main": "es/index",
"scripts": {
"build": "npm run build-cjs && npm run build-es",
"build-cjs": "rimraf lib && cross-env BABEL_ENV=cjs babel ./modules -d lib --ignore __tests__",
"build-es": "rimraf es && cross-env BABEL_ENV=es babel ./modules -d es --ignore __tests__",
"prepublishOnly": "npm run build"
},
"engines": {
"node": ">=6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/huangguozhen/ifox.git"
},
"keywords": [
"react",
"redux",
"react-redux",
],
"author": "huangguozhen <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/huangguozhen/ifox/issues"
},
"files": [
"*.md",
"es",
"lib"
],
"homepage": "https://github.com/huangguozhen/ifox#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-dev-expression": "^0.2.1",
"babel-plugin-istanbul": "^4.1.4",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"cross-env": "^5.0.1",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"rimraf": "^2.6.1"
},
"dependencies": {
"flatten": "^1.0.2",
"global": "^4.3.2",
"invariant": "^2.2.2",
"is-plain-object": "^2.0.4",
"lodash.isfunction": "^3.0.8",
"react-redux": "^5.0.5",
"react-router": "3.x.x",
"redux": "^3.7.1",
"warning": "^3.0.0"
}
}