forked from react-grid-layout/react-resizable
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.5 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
{
"name": "react-resizable",
"version": "0.4.2",
"description": "A component that is resizable with handles.",
"main": "index.js",
"scripts": {
"lint": "jsxhint lib/ test/",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "bash build.sh",
"build-example": "webpack",
"dev": "echo 'Open http://localhost:4002/examples/1.html'; webpack-dev-server --config webpack-dev-server.config.js --hot --progress --colors --port 4002 --content-base .",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git@github.com:STRML/react-resizable.git"
},
"keywords": [
"react",
"resize",
"resizable"
],
"author": "Samuel Reed <samuel.trace.reed@gmail.com> (http://strml.net/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/STRML/react-resizable/issues"
},
"homepage": "https://github.com/STRML/react-resizable",
"devDependencies": {
"babel": "^5.0.1",
"babel-core": "^5.0.1",
"babel-loader": "^5.0.0",
"css-loader": "^0.9.1",
"jshint": "^2.6.3",
"lodash": "^3.6.0",
"pre-commit": "^1.0.6",
"precommit-hook": "^2.0.1",
"react": "^0.13.1",
"react-hot-loader": "^1.2.4",
"style-loader": "^0.9.0",
"webpack": "^1.7.3",
"webpack-dev-server": "^1.8.0"
},
"dependencies": {
"object-assign": "^2.0.0"
},
"peerDependencies": {
"react-draggable": "^0.8.1"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"precommit": [
"lint"
]
}