-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
26 lines (26 loc) · 851 Bytes
/
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
{
"name": "drag-check-js",
"version": "2.0.2",
"description": "Library for checking multiple checkboxes by click-and-dragging over them. Paint your selection!",
"main": "dragcheck.js",
"repository": {
"type": "git",
"url": "git+https://github.com/scarlac/drag-check-js.git"
},
"author": "Seph Soliman",
"license": "CC-BY-4.0",
"bugs": {
"url": "https://github.com/scarlac/drag-check-js/issues"
},
"homepage": "https://github.com/scarlac/drag-check-js#readme",
"devDependencies": {
"webpack": "^1.13.0",
"webpack-dev-server": "^1.14.1"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server",
"build-vanilla": "webpack -p dragcheck-vanilla.js dist/dragcheck.js",
"build-jquery": "webpack -p dragcheck-jquery.js dist/jquery.dragcheck.js"
}
}