forked from react-grid-layout/react-grid-layout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.68 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
{
"name": "react-grid-layout",
"version": "0.7.0",
"description": "A draggable and resizable grid layout with responsive breakpoints, for React.",
"main": "index.js",
"scripts": {
"lint": "jsxhint lib/ test/",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "make js",
"build-example": "webpack",
"check-build": "make check-build",
"dev": "echo 'Open http://localhost:4002'; webpack-dev-server --config webpack-dev-server.config.js --hot --progress --colors --port 4002 --content-base ."
},
"repository": {
"type": "git",
"url": "[email protected]:STRML/react-grid-layout.git"
},
"keywords": [
"react",
"grid",
"drag",
"draggable",
"resize",
"resizable",
"fluid",
"responsive"
],
"author": "Samuel Reed <[email protected]> (http://strml.net/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/STRML/react-grid-layout/issues"
},
"homepage": "https://github.com/STRML/react-grid-layout",
"dependencies": {
"deep-equal": "^0.2.1",
"object-assign": "^2.0.0",
"react-draggable": "strml/react-draggable",
"react-resizable": "^0.2.1"
},
"devDependencies": {
"6to5": "^2.2.0",
"6to5-loader": "^1.0.0",
"css-loader": "^0.9.0",
"ejs": "^1.0.0",
"exports-loader": "^0.6.2",
"imports-loader": "^0.6.3",
"jsxhint": "^0.9.0",
"lodash": "^2.4.1",
"precommit-hook": "^1.0.7",
"react": "^0.12.2",
"react-hot-loader": "^1.0.4",
"style-loader": "^0.8.2",
"webpack": "^1.4.14",
"webpack-dev-server": "^1.7.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"precommit": [
"check-build",
"lint"
]
}