forked from rmariuzzo/react-new-window
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.46 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": "react-new-window",
"description": "🔲 Pop a new window React using window.open",
"version": "0.0.5",
"main": "dist/react-new-window.js",
"module": "dist/react-new-window.esm.js",
"browser": "dist/react-new-window.umd.js",
"repository": "[email protected]:rmariuzzo/react-new-window.git",
"author": "Rubens Mariuzzo <[email protected]>",
"license": "MIT",
"files": [
"dist"
],
"devDependencies": {
"@storybook/addon-actions": "^3.2.14",
"@storybook/addon-links": "^3.2.14",
"@storybook/react": "^3.2.14",
"babel-core": "^6.26.0",
"babel-jest": "^21.2.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2015-rollup": "^3.0.0",
"babel-preset-react": "^6.24.1",
"cross-env": "^5.1.1",
"jest": "^22.4.2",
"prop-types": "^15.6.1",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-test-renderer": "^16.0.0",
"rollup": "^0.57.1",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-filesize": "^1.4.2",
"rollup-plugin-uglify": "^3.0.0",
"uglify-es": "^3.3.10"
},
"peerDependencies": {
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"scripts": {
"build": "cross-env NODE_ENV=production rollup -c",
"storybook": "cross-env NODE_ENV=test start-storybook -p 6006",
"build-storybook": "cross-env NODE_ENV=test build-storybook -o docs"
}
}