forked from mgechev/react-reorderable
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
65 lines (65 loc) · 1.61 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
{
"name": "react-reorderable",
"version": "0.4.5",
"description": "Sortable component for ReactJS",
"main": "lib/react-reorderable.js",
"scripts": {
"build": "gulp",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git://github.com/mgechev/react-reorderable.git"
},
"keywords": [
"react",
"sortable",
"reorderable",
"drag",
"draggable"
],
"author": {
"name": "@mgechev"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/mgechev/react-reorderable/issues"
},
"homepage": "https://github.com/mgechev/react-reorderable",
"devDependencies": {
"browserify": "^12.0.1",
"browserify-shim": "^3.8.11",
"create-react-class": "^15.6.2",
"gulp": "^3.8.11",
"gulp-react": "^3.0.1",
"gulp-rename": "^1.2.0",
"gulp-uglify": "^1.1.0",
"gulp-umd": "^0.1.3",
"prop-types": "^15.6.0",
"react": "^16.2.0 || ^17.0.2",
"react-dom": "^16.2.0 || ^17.0.2",
"react-drag": "^2.0.0",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
},
"peerDependencies": {
"create-react-class": "^15.0.0",
"prop-types": "^15.0.0",
"react": "^15.0.0 || ^16.0.0 || ^17.0.0",
"react-dom": "^15.0.0 || ^16.0.0 || ^17.0.0",
"react-drag": "^2.0.0"
},
"browserify-shim": {
"react": "global:React",
"react-dom": "global:ReactDOM",
"react-drag": "global:ReactDrag",
"prop-types": "global:PropTypes",
"create-react-class": "global:createReactClass"
},
"maintainers": [
{
"name": "mgechev",
"email": "[email protected]"
}
]
}