-
Notifications
You must be signed in to change notification settings - Fork 77
/
package.json
63 lines (63 loc) · 1.7 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
56
57
58
59
60
61
62
63
{
"name": "react-waterfall",
"version": "4.0.4",
"description": "",
"main": "index.js",
"files": [
"index.js",
"package.json",
"README.md",
"dist/"
],
"scripts": {
"build": "rollup -c -m && yarn gen-flow",
"gen-flow": "cp src/types.js dist/react-waterfall.js.flow",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/didierfranc/react-waterfall.git"
},
"keywords": [
"react",
"redux",
"context",
"store"
],
"author": "Didier Franc <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/didierfranc/react-waterfall/issues"
},
"homepage": "https://github.com/didierfranc/react-waterfall#readme",
"devDependencies": {
"@babel/core": "^7.0.0-beta.47",
"@babel/plugin-proposal-class-properties": "^7.0.0-beta.47",
"@babel/plugin-transform-modules-commonjs": "^7.0.0-beta.47",
"@babel/preset-env": "^7.0.0-beta.47",
"@babel/preset-flow": "^7.0.0-beta.47",
"@babel/preset-react": "^7.0.0-beta.47",
"babel-core": "^7.0.0-0",
"babel-eslint": "^8.2.3",
"babel-jest": "^22.4.4",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.8.2",
"flow-bin": "^0.72.0",
"jest": "^22.4.4",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-test-renderer": "^16.3.2",
"regenerator-runtime": "^0.11.1",
"rollup": "^0.59.1",
"rollup-plugin-babel": "^4.0.0-beta.4",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^3.0.0"
},
"peerDependencies": {
"react": "^16.3.0",
"react-dom": "^16.3.0"
}
}