-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.31 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.31 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
{
"name": "bs-react-grid-dnd",
"description": "ReasonML bindings for the react-grid-dnd library",
"version": "0.2.0",
"scripts": {
"build": "bsb -make-world",
"start": "bsb -make-world -w",
"clean": "bsb -clean-world",
"dev": "parcel ./examples/index.html"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/eschaefer/bs-react-grid-dnd#readme",
"keywords": [
"BuckleScript",
"ReasonReact",
"reason-react",
"react-dnd",
"react-grid-dnd",
"drag",
"drop"
],
"author": {
"name": "Eric Schaefer",
"email": "omg@eric-schaefer.com"
},
"main": "./src/ReactGridDnd.re",
"files": [
"src/*.re",
"bsconfig.json"
],
"repository": {
"type": "git",
"url": "git+https://github.com/eschaefer/bs-react-grid-dnd.git"
},
"bugs": {
"url": "https://github.com/eschaefer/bs-react-grid-dnd/issues"
},
"license": "MIT",
"devDependencies": {
"bs-platform": "^6.2.1",
"bsb-js": "^1.1.7",
"parcel-bundler": "^1.12.4",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"reason-react": "^0.7.0"
},
"dependencies": {
"react-gesture-responder": "^2.1.0",
"react-grid-dnd": "^2.1.1"
},
"peerDependencies": {
"reason-react": ">=0.7.0",
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
}
}