-
-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathpackage.json
61 lines (61 loc) · 1.35 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
{
"name": "drag-drop",
"description": "HTML5 drag & drop for humans",
"version": "7.2.0",
"author": {
"name": "Feross Aboukhadijeh",
"email": "[email protected]",
"url": "https://feross.org"
},
"bugs": {
"url": "https://github.com/feross/drag-drop/issues"
},
"dependencies": {
"blob-to-buffer": "^1.2.9",
"run-parallel": "^1.2.0"
},
"devDependencies": {
"babel-minify": "^0.5.1",
"browserify": "^17.0.0",
"ecstatic": "^4.1.4",
"standard": "*",
"tape": "^5.2.2"
},
"homepage": "https://github.com/feross/drag-drop",
"keywords": [
"drag",
"drop",
"dnd",
"drag and drop",
"drag drop",
"html5",
"drag & drop",
"frontend",
"browserify"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/feross/drag-drop.git"
},
"scripts": {
"example": "browserify -s DragDrop -r . > example/drag-drop.js && ecstatic example --port 4000",
"size": "browserify -s DragDrop -r . | minify | gzip | wc -c",
"test": "standard && tape test/*.js"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/feross"
},
{
"type": "patreon",
"url": "https://www.patreon.com/feross"
},
{
"type": "consulting",
"url": "https://feross.org/support"
}
]
}