forked from react-grid-layout/react-resizable
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.91 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.91 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-resizable",
"version": "0.4.3-emosbaugh",
"description": "A component that is resizable with handles.",
"main": "index.js",
"scripts": {
"lint": "./node_modules/.bin/eslint lib/ test/",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "bash build.sh",
"git-add-build": "git add build/",
"build-example": "./node_modules/.bin/webpack",
"dev": "echo 'Open http://localhost:4002/examples/1.html'; ./node_modules/.bin/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.8.29",
"babel-core": "^5.8.29",
"babel-eslint": "^4.1.3",
"babel-loader": "^5.3.2",
"babel-runtime": "^5.8.29",
"css-loader": "^0.21.0",
"eslint": "^1.7.3",
"eslint-plugin-react": "^3.6.3",
"lodash": "^3.10.1",
"pre-commit": "^1.0.6",
"precommit-hook": "^2.0.1",
"react": "^0.14.0",
"react-addons-perf": "^0.14.0",
"react-dom": "^0.14.0",
"react-hot-loader": "^1.3.0",
"style-loader": "^0.13.0",
"webpack": "^1.12.2",
"webpack-dev-server": "^1.12.1"
},
"dependencies": {
"object-assign": "^2.0.0",
"react-draggable": "git://github.com/emosbaugh/react-draggable.git#master"
},
"peerDependencies": {
"react": ">=0.14.0-rc1",
"react-dom": ">=0.14.0-rc1"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"pre-commit": [
"lint",
"build",
"git-add-build"
]
}