forked from rmariuzzo/react-new-window
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.95 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
64
65
66
67
68
{
"name": "react-new-window",
"description": "🔲 Pop a new window React using window.open",
"version": "0.0.9",
"keywords": [
"react",
"window",
"open",
"popup"
],
"main": "src/react-new-window.js",
"module": "es/react-new-window.js",
"browser": "umd/react-new-window.js",
"repository": "git@github.com:rmariuzzo/react-new-window.git",
"author": "Rubens Mariuzzo <rubens@mariuzzo.com>",
"license": "MIT",
"files": [
"src",
"es",
"umd"
],
"dependencies": {
"prop-types": "^15.6.1"
},
"devDependencies": {
"@storybook/addon-actions": "^3.2.14",
"@storybook/addon-links": "^3.2.14",
"@storybook/react": "^3.2.14",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"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",
"eslint": "^4.19.1",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.7.0",
"jest": "^22.4.2",
"np": "^2.20.1",
"prettier": "^1.11.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-commonjs": "^9.1.0",
"rollup-plugin-filesize": "^1.4.2",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-replace": "^2.0.0",
"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",
"release": "np",
"prerelease": "npm run lint && npm run build",
"lint": "eslint ./src",
"storybook": "cross-env NODE_ENV=test start-storybook -p 6006",
"build-storybook": "cross-env NODE_ENV=test build-storybook -o docs"
}
}