-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.32 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
{
"name": "react-redux-uuid",
"version": "1.2.0",
"description": "Adds an UUID to components through a HoC",
"main": "lib/index.js",
"repository": {
"url": "https://github.com/eloytoro/react-redux-uuid",
"type": "git"
},
"scripts": {
"build": "webpack --config webpack.config.js",
"prepublish": "npm test && npm run build",
"test": "jest"
},
"author": "eloytoro",
"license": "MIT",
"dependencies": {
"lodash.get": "^4.4.2",
"lodash.has": "^4.5.2",
"lodash.isnil": "^4.0.0",
"lodash.isplainobject": "^4.0.6",
"lodash.mapvalues": "^4.6.0",
"lodash.omit": "^4.5.0",
"react-redux": "^4.0.0",
"redux": "^3.0.0",
"uuid": "^2.0.0"
},
"peerDependencies": {
"react": "^0.14.0"
},
"devDependencies": {
"babel-core": "^6.18.2",
"babel-jest": "^17.0.0",
"babel-loader": "^6.2.7",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-3": "^6.17.0",
"enzyme": "^2.6.0",
"jest": "^23.0.0",
"react": "^15.4.1",
"react-addons-test-utils": "^15.3.2",
"react-dom": "^15.3.2",
"react-test-renderer": "^15.3.2",
"redux-thunk": "^2.3.0",
"webpack": "1.13.0",
"webpack-node-externals": "^1.5.4"
},
"babel": {
"presets": [
"es2015",
"stage-3",
"react"
]
}
}