forked from rmariuzzo/react-new-window
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.94 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
69
{
"name": "react-new-window",
"description": "🔲 Pop a new window in React, using window.open",
"version": "0.1.2",
"keywords": [
"react",
"window",
"open",
"popup"
],
"main": "lib/react-new-window.js",
"module": "es/react-new-window.js",
"browser": "umd/react-new-window.js",
"repository": "[email protected]:rmariuzzo/react-new-window.git",
"author": "Rubens Mariuzzo <[email protected]>",
"license": "MIT",
"files": [
"lib",
"es",
"umd",
"types"
],
"types": "./types/NewWindow.d.ts",
"dependencies": {
"prop-types": "^15.7.2"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@storybook/addon-actions": "^5.0.11",
"@storybook/addon-links": "^5.0.11",
"@storybook/react": "^5.0.11",
"babel-eslint": "^10.0.1",
"cross-env": "^5.2.0",
"eslint": "^4.19.1",
"eslint-plugin-prettier": "^2.7.0",
"eslint-plugin-react": "^7.13.0",
"husky": "^2.3.0",
"jest": "^22.4.4",
"np": "^2.20.1",
"prettier": "^1.17.1",
"pretty-quick": "^1.11.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-test-renderer": "^16.8.6",
"rollup": "^0.57.1",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-filesize": "^1.4.2",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-replace": "^2.2.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"
}
}