-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.61 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.61 KB
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
{
"name": "react-rx-props",
"version": "1.0.4",
"description": "Convert react component props to rx multicasted observables",
"main": "dist/react-rx-props.cjs.js",
"module": "dist/react-rx-props.esm.js",
"scripts": {
"lint": "eslint ./src/",
"build": "rimraf dist && rollup -c",
"cover": "jest --coverage",
"test": "jest",
"prepublish": "npm run build"
},
"keywords": [
"rx",
"rxjs",
"react",
"props",
"observables"
],
"author": "DontRelaX",
"license": "ISC",
"peerDependencies": {
"react": ">=15.0.0",
"rxjs": ">=5.0.0",
"babel-runtime": "^6.25.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.1.2",
"babel-jest": "^21.0.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-runtime": "^6.25.0",
"codecov.io": "^0.1.6",
"enzyme": "^3.0.0",
"enzyme-adapter-react-16": "^1.0.0",
"eslint": "^4.0.0",
"eslint-config-airbnb": "^16.0.0",
"eslint-plugin-class-property": "^1.0.0",
"eslint-plugin-import": "^2.0.0",
"eslint-plugin-jsx-a11y": "^6.0.0",
"eslint-plugin-react": "^7.0.0",
"jest": "^22.0.4",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-test-renderer": "^16.0.0",
"rimraf": "^2.6.2",
"rollup": "^0.53.3",
"rollup-plugin-babel": "^3.0.3",
"rxjs": "^5.5.6",
"sinon": "^4.1.3",
"underscore": "^1.8.3"
},
"jest": {
"setupFiles": [
"./setupJest"
],
"roots": [
"src"
]
}
}