-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.02 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
{
"name": "redux-infuse",
"version": "0.1.23",
"description": "",
"main": "src/index.js",
"scripts": {
"build": "babel src --out-dir build --source-maps --ignore **/__tests__,**/__mocks__",
"publish": "npm run build && node scripts/prepublish.js && npm publish build/",
"test": "jest"
},
"jest": {
"transform": {
"^.+\\.jsx?$": "babel-jest"
}
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/meruhealth/redux-infuse.git"
},
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/meruhealth/redux-infuse/issues"
},
"homepage": "https://github.com/meruhealth/redux-infuse#readme",
"dependencies": {
"lodash": ">=4.17.11",
"reselect": "^3.0.0 || ^2.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"jest": "^21.2.1"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0-0 || ^16.0.0-0",
"redux": "^2.0.0 || ^3.0.0"
}
}