-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.13 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.13 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "react-detachable-window",
"version": "0.5.10",
"license": "MIT",
"description": "Wrap a portion of the DOM or a group of react components and make it detachable into a new window",
"main": "build/index.js",
"peerDependencies": {
"react": "^16.3.0",
"react-dom": "^16.3.0"
},
"keywords": [
"docking",
"dockable",
"window",
"react",
"React",
"detach",
"detachable",
"component",
"portal",
"createPortal"
],
"dependencies": {
"react": "16.3.2",
"react-dom": "16.3.2"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "./node_modules/.bin/webpack-dev-server --inline --config webpack/webpack.dev.config.js",
"build": "webpack --display-error-details --colors --progress --config webpack/webpack.prod.config.js",
"build-dev": "webpack --display-error-details --colors --progress --config webpack/webpack.dev.config.js && cp examples/src/index.html examples/build && cp examples/src/index.js.raw examples/build/index.js.raw",
"gh-pages": "yarn build-dev && gh-pages -d examples/build",
"new-version": "git push && npm run build && npm login && npm version patch && npm publish"
},
"author": {
"name": "Eetay Natan",
"email": "eetay2@gmail.com"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.3",
"babel-eslint": "8.2.5",
"babel-loader": "7.1.4",
"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-react": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"babel-register": "6.26.0",
"css-loader": "1.0.0",
"eslint": "5.0.1",
"eslint-config-airbnb": "17.0.0",
"eslint-plugin-import": "2.13.0",
"eslint-plugin-jsx-a11y": "6.1.0",
"eslint-plugin-react": "7.10.0",
"eslint-plugin-security": "1.4.0",
"gh-pages": "1.2.0",
"http-promises": "1.2.2",
"react-highlight": "0.12.0",
"react-hot-loader": "4.3.3",
"style-loader": "0.21.0",
"webpack": "4.8.3",
"webpack-cli": "2.1.3",
"webpack-dev-server": "3.1.4"
}
}