-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.29 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
{
"name": "@seracio/xstream-connect",
"keywords": [
"react",
"xstream"
],
"version": "4.0.0",
"main": "dist/xstream-connect.js",
"module": "dist/xstream-connect.es6.js",
"repository": "https://github.com/seracio/xstream-connect.git",
"author": "nicolasmondon <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-core": "^6.22.1",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-polyfill": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-2": "^6.22.0",
"buble": "^0.15.2",
"flow-bin": "^0.50.0",
"jest": "^20.0.4",
"lodash": "^4.17.4",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-test-renderer": "^15.5.4",
"rollup": "^0.45.2",
"rollup-plugin-buble": "^0.15.0",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-flow": "^1.1.1",
"rollup-plugin-node-resolve": "^3.0.0",
"xstream": "^10.9.0"
},
"scripts": {
"test": "./node_modules/.bin/jest",
"build": "./node_modules/.bin/rollup --config rollup.config.js"
},
"peerDependencies": {
"prop-types": ">= 15.0.0",
"react": ">= 14.0.0",
"react-dom": ">= 14.0.0",
"xstream": ">= 9.0.0"
}
}