forked from react-grid-layout/react-resizable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2 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-resizable",
"version": "1.6.0",
"description": "A component that is resizable with handles.",
"main": "index.js",
"scripts": {
"lint": "eslint --ext .js,.jsx lib/ test/; flow",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "bash build.sh",
"build-example": "webpack",
"dev": "echo 'Open http://localhost:4003/examples/1.html' && cross-env NODE_ENV=test webpack-dev-server --config webpack-dev-server.config.js --hot --progress --colors --port 4003 --content-base .",
"prepublish": "npm run build",
"validate": "yarn list",
"preversion": "npm run lint",
"version": "git add CHANGELOG.md",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "[email protected]:STRML/react-resizable.git"
},
"keywords": [
"react",
"resize",
"resizable"
],
"author": "Samuel Reed <[email protected]> (http://strml.net/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/STRML/react-resizable/issues"
},
"homepage": "https://github.com/STRML/react-resizable",
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-core": "^6.5.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.2",
"babel-plugin-transform-flow-comments": "^6.7.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-1": "^6.5.0",
"cross-env": "^3.1.4",
"css-loader": "^0.26.1",
"eslint": "^3.14.0",
"eslint-plugin-react": "^6.9.0",
"flow-bin": "^0.38.0",
"lodash": "^4.3.0",
"pre-commit": "^1.1.2",
"react": "^15.0.0",
"react-dom": "^15.0.0",
"style-loader": "^0.13.0",
"webpack": "^1.12.13",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"react-draggable": "^2.1.0"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0",
"react-dom": "^0.14.0 || ^15.0.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"pre-commit": [
"lint",
"validate"
]
}