forked from steveluscher/jquery.dragdrop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·41 lines (41 loc) · 1.21 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
{
"name" : "jquery.dragdrop",
"title" : "jQuery DragDrop",
"version" : "0.1.0-dev",
"description" : "Create draggable DOM elements and their associated drop targets",
"keywords": ["drag", "drop", "dragdrop", "dnd", "jquery", "draggable", "droppable"],
"homepage" : "https://github.com/steveluscher/jquery.dragdrop",
"authors" : [{
"name" : "Steven Luscher",
"email" : "jquerydragdrop@steveluscher.com",
"url" : "http://lakefieldmusic.com"
},
{
"name" : "Ruboss Technology Corporation",
"email" : "hello@ruboss.com",
"url" : "http://ruboss.com"
}],
"repository": {
"type": "git",
"url": "git://github.com/steveluscher/jquery.dragdrop.git"
},
"bugs": {
"url": "https://github.com/steveluscher/jquery.dragdrop/issues"
},
"licenses": [{
"type": "MIT",
"url": "https://github.com/steveluscher/jquery.dragdrop/blob/master/LICENSE"
}],
"devDependencies" : {
"grunt" : "~0.4",
"grunt-cli" : "~0.1",
"grunt-contrib-watch" : "~0.4",
"grunt-contrib-coffee" : "~0.7",
"grunt-contrib-jasmine": "~0.5",
"grunt-contrib-uglify" : "~0.2",
"grunt-growl" : "~0.1"
},
"scripts": {
"test": "grunt travis"
}
}