-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.18 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
{
"name": "rzero-tools",
"version": "1.1.1",
"description": "A decorator and HOC component for redux-zero",
"main": "lib/index.js",
"scripts": {
"build": "sh ./build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/nyteshade/rzero-tools.git"
},
"keywords": [
"redux-zero",
"decorator",
"high-order-component"
],
"author": "Brielle Harrison",
"license": "MIT",
"bugs": {
"url": "https://github.com/nyteshade/rzero-tools/issues"
},
"homepage": "https://github.com/nyteshade/rzero-tools#readme",
"devDependencies": {
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"jest": "^21.2.1",
"jest-babel": "^1.0.1",
"raf": "^3.4.0",
"react": "^16.0.0",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.0.0",
"redux-zero": "^3.0.0"
},
"jest": {
"setupFiles": [
"raf/polyfill"
]
}
}