-
Notifications
You must be signed in to change notification settings - Fork 149
/
package.json
65 lines (65 loc) · 2.04 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": "mobile-drag-drop",
"version": "3.0.0-rc.0",
"description": "Polyfill for making HTML5 drag and drop possible in all browsers.",
"main": "index.min.js",
"types": "index.d.ts",
"homepage": "https://www.timr.co/mobile-drag-drop/demo/",
"scripts": {
"start": "grunt",
"build": "grunt compile",
"release:build": "grunt build-release",
"release:serve": "grunt serve-release",
"release:prepare:prerelease": "grunt prepare-release:prerelease",
"release:prepare:patch": "grunt prepare-release:patch",
"release:prepare:minor": "grunt prepare-release:minor",
"release:prepare:major": "grunt prepare-release:major",
"release:publish": "grunt publish-release && npm publish release",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git://github.com/timruffles/mobile-drag-drop.git"
},
"keywords": [
"dragdrop",
"drag-drop",
"html5",
"shim",
"mobile",
"polyfill"
],
"author": "Tim Ruffles <[email protected]>",
"contributors": [
"Stefan Steinhart <[email protected]>",
"Kaur Kuut <[email protected]>",
"Tim Ruffles <[email protected]>",
"Joshua-Smith <[email protected]>",
"Jason Hickner <[email protected]>",
"Matt Oakley <[email protected]>",
"James Smith <[email protected]>",
"James Shore <[email protected]>",
"Paul Shirren <[email protected]>",
"Simon Altschuler <[email protected]>",
"Jochen Kühner <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/timruffles/mobile-drag-drop/issues"
},
"devDependencies": {
"grunt": "^1.4.1",
"grunt-bump": "^0.8.0",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-connect": "^3.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-uglify": "^5.0.1",
"grunt-contrib-watch": "^1.1.0",
"grunt-exec": "^3.0.0",
"grunt-npm": "0.0.2",
"rollup": "^0.54.1",
"rollup-plugin-sourcemaps": "^0.6.3",
"tslint": "^6.1.3",
"typescript": "^4.5.4"
}
}