This repository was archived by the owner on Apr 11, 2024. It is now read-only.
forked from timruffles/mobile-drag-drop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.07 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.07 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
59
60
61
62
63
64
65
{
"name": "mobile-drag-drop",
"version": "2.2.0",
"description": "Polyfill for making HTML5 drag and drop possible in all browsers.",
"main": "index.min.js",
"types": "index.d.ts",
"homepage": "http://timruffles.github.io/ios-html5-drag-drop-shim/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/ios-html5-drag-drop-shim.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]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/timruffles/ios-html5-drag-drop-shim/issues"
},
"devDependencies": {
"grunt": "^1.0.1",
"grunt-bump": "^0.8.0",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-connect": "^1.0.2",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-uglify": "^2.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-npm": "0.0.2",
"grunt-rollup": "^1.0.1",
"grunt-ts": "^5.5.1",
"grunt-tslint": "^5.0.1",
"rollup-plugin-sourcemaps": "^0.4.2",
"tslint": "^5.3.0",
"typescript": "^2.3.0"
}
}