forked from JakeGinnivan/react-popout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.91 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
{
"name": "react-popout",
"version": "1.0.2",
"description": "Wraps window.open in a react component, allowing the contents to be part of your react render tree",
"main": "dist/react-popout.min.js",
"repository": {
"type": "git",
"url": "https://github.com/JakeGinnivan/react-popout"
},
"keywords": [
"react",
"react-component",
"window",
"popup",
"popout",
"open",
"browser"
],
"scripts": {
"prebuild:demo": "npm run build:dist",
"demo": "webpack-dev-server --progress --colors --hot -d --port 8880 --config _webpack.demo.config.js",
"build:dist": "webpack --config _webpack.dist.config.js --optimize-minimize",
"build:demo": "webpack --config _webpack.demo.config.js --optimize-minimize",
"test": "mocha \"test/**/*spec.js*\" --compilers js:babel-register --reporter dot",
"prepublish": "npm run build:dist"
},
"author": "Jake Ginnivan",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-runtime": "^6.26.0",
"eslint-config-airbnb": "latest",
"eslint-config-prettier": "latest",
"eslint-plugin-import": "latest",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-prettier": "latest",
"eslint-plugin-react": "latest",
"mocha": "^3.5.3",
"node-libs-browser": "^2.0.0",
"prettier": "latest",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.8.2"
},
"dependencies": {
"prop-types": "^15.6.0",
"react": "^0.14.9"
},
"peerDependencies": {
"react": "^15.0.0",
"react-dom": "^15.0.0"
}
}