forked from react-grid-layout/react-grid-layout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.84 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
{
"name": "react-grid-layout",
"version": "0.9.2",
"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": "bash build.sh",
"build-example": "webpack --config webpack-examples.config.js; node ./examples/generate.js",
"dev": "echo 'Open http://localhost:4002'; webpack-dev-server --config webpack-dev-server.config.js --hot --progress --colors --port 4002 --content-base .",
"prepublish": "npm run build"
},
"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": "^1.0.0",
"object-assign": "^2.0.0",
"react-draggable": "^0.8.1",
"react-resizable": "^0.4.2"
},
"devDependencies": {
"babel": "^5.0.1",
"babel-core": "^5.0.1",
"babel-loader": "^5.0.0",
"babel-runtime": "^5.0.1",
"css-loader": "^0.9.1",
"ejs": "^2.3.1",
"exports-loader": "^0.6.2",
"imports-loader": "^0.6.3",
"jsxhint": "^0.14.0",
"lodash": "^3.6.0",
"pre-commit": "^1.0.6",
"precommit-hook": "^2.0.1",
"react": "^0.13.1",
"react-clonewithprops": "^1.0.1",
"react-hot-loader": "^1.2.4",
"style-loader": "^0.9.0",
"webpack": "^1.7.3",
"webpack-dev-server": "^1.8.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"pre-commit": [
"lint"
]
}