forked from makeomatic/redux-connect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.01 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
{
"name": "redux-connect",
"version": "2.4.0",
"description": "It allows you to request async data, store them in redux state and connect them to your react component.",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/makeomatic/redux-connect.git"
},
"scripts": {
"build": "rm -rf ./lib; NODE_ENV=production babel ./modules -d lib --ignore '__tests__'",
"lint": "eslint ./modules",
"test": "npm run lint && jest",
"prepublish": "npm run lint && npm run build"
},
"keywords": [
"redux",
"react",
"connect",
"async",
"props"
],
"author": "Vitaly Aminev <[email protected]>",
"contributors": [
"Rodion Salnik (http://brocoders.com)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/makeomatic/redux-connect/issues"
},
"homepage": "https://github.com/makeomatic/redux-connect",
"peerDependencies": {
"react": "0.14.x || 15.x.x",
"react-router": "~2.x.x",
"react-redux": "~4.x.x"
},
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-core": "^6.4.5",
"babel-eslint": "^6.0.0",
"babel-jest": "^12.0.2",
"babel-plugin-transform-runtime": "^6.8.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-es2015-loose": "^7.0.0",
"babel-preset-react": "^6.3.13",
"babel-preset-react-optimize": "^1.0.1",
"babel-preset-stage-0": "^6.3.13",
"bluebird": "^3.3.3",
"enzyme": "^2.2.0",
"eslint": "^2.9.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.6.1",
"eslint-plugin-jsx-a11y": "^1.2.0",
"eslint-plugin-react": "^5.0.1",
"jest-cli": "^12.0.2",
"react": "^15.0.0",
"react-addons-test-utils": "^15.0.2",
"react-dom": "^15.0.0",
"react-redux": "^4.4.0",
"react-router": "^2.4.0",
"redux": "^3.3.1",
"sinon": "^1.17.4"
},
"dependencies": {
"redux-actions": "^0.9.1",
"babel-runtime": "~6.x.x"
},
"jest": {
"automock": false,
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest"
}
}