-
Notifications
You must be signed in to change notification settings - Fork 66
/
package.json
99 lines (99 loc) · 2.79 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
{
"name": "redux-connect",
"version": "10.0.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",
"module": "es/index.js",
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/makeomatic/redux-connect"
},
"scripts": {
"build": "yarn build:lib && yarn build:es",
"prebuild:lib": "rm -rf lib/*",
"build:lib": "cross-env NODE_ENV=production babel --out-dir lib modules",
"prebuild:es": "rm -rf es/*",
"build:es": "cross-env NODE_ENV=production BABEL_ENV=es babel --out-dir es modules",
"lint": "eslint ./modules",
"pretest": "yarn lint",
"test": "jest",
"preversion": "yarn test",
"postversion": "npm publish && git push && git push --tags",
"prepare": "yarn 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": {
"prop-types": "15.x.x",
"react": "^16.8.4",
"react-redux": "7.x.x",
"react-router": "5.x.x",
"react-router-config": "5.x.x",
"react-router-dom": "5.x.x",
"redux-actions": "2.x.x"
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-export-default-from": "^7.5.2",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"babel-eslint": "^10.0.3",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"bluebird": "^3.7.1",
"cross-env": "^6.0.3",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"eslint": "^6.5.1",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^2.1.2",
"immutable": "^3.8.2",
"jest": "^24.9.0",
"prop-types": "^15.7.2",
"raf": "^3.4.1",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"react-redux": "^7.1.1",
"react-router": "^5.1.2",
"react-router-config": "^5.1.1",
"react-router-dom": "^5.1.2",
"react-test-renderer": "^16.10.2",
"redux": "^4.0.4",
"redux-actions": "^2.6.5",
"redux-immutable": "^4.0.0",
"regenerator-runtime": "^0.13.3",
"sinon": "^7.5.0"
},
"jest": {
"automock": false,
"testEnvironment": "jsdom",
"testURL": "http://localhost",
"setupFiles": [
"raf/polyfill"
]
},
"files": [
"modules/",
"lib/",
"es/"
]
}