forked from didierfranc/react-waterfall
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.37 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.37 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
{
"name": "react-waterfall",
"version": "3.0.5",
"main": "dist/react-waterfall.js",
"author": "Didier Franc <didierfranc@me.com>",
"license": "MIT",
"files": ["package.json", "README.md", "dist/"],
"scripts": {
"build": "rollup -c -mw",
"size": "gzip -c 'dist/react-waterfall.js' | echo gzipped → `wc -c` bytes",
"test": "jest",
"coverage": "jest --coverage",
"ci": "yarn coverage --ci -i",
"ci:cov": "yarn ci && cat ./coverage/lcov.info | coveralls",
"ci:cov:win32":
"yarn coverage --ci -i && type coverage\\lcov.info | coveralls"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.42",
"@babel/plugin-proposal-class-properties": "^7.0.0-beta.42",
"@babel/preset-env": "^7.0.0-beta.42",
"@babel/preset-flow": "^7.0.0-beta.42",
"@babel/preset-react": "^7.0.0-beta.42",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^22.4.3",
"coveralls": "^3.0.0",
"flow-bin": "^0.66.0",
"jest": "^22.4.3",
"react": "^16.3.0",
"react-dom": "^16.3.0",
"react-test-renderer": "^16.3.0",
"rollup": "^0.56.2",
"rollup-plugin-babel": "^4.0.0-beta.0",
"rollup-plugin-uglify": "^3.0.0"
},
"peerDependencies": {
"react": "^16.3.0",
"react-dom": "^16.3.0"
},
"description": "React store built on top of the new context API",
"repository": "git@github.com:didierfranc/react-waterfall.git"
}