forked from schne324/dragon-drop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.98 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
{
"name": "drag-on-drop",
"version": "3.2.3",
"description": "Accessible drag and drop list reorder",
"main": "dist/dragon-drop.js",
"scripts": {
"build": "npm run pre-build && npm run bundle && npm run bundle:min && npm run demo",
"bundle": "browserify index.js -o dist/dragon-drop.js --standalone DragonDrop -t [ babelify --presets [ env stage-0 ] ]",
"bundle:min": "browserify -g uglifyify index.js -o dist/dragon-drop.min.js --standalone DragonDrop -t [ babelify --presets [ env stage-0 ] ]",
"clean": "rm -rf dist/",
"demo": "mkdir dist/demo && cp-dir ./demo ./dist/demo",
"deploy": "gh-pages -d dist/",
"dev": "watch-run -p 'lib/**,demo/**,index.js' npm run build",
"pre-build": "npm run clean && mkdir dist",
"test": "npm run test:coverage && npm run lint",
"test:coverage": "nyc --reporter=text npm run test:run",
"test:run": "tape -r babel-register test/index.js | tap-spec",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/schne324/dragon-drop.git"
},
"author": "Harris Schneiderman",
"license": "MIT",
"bugs": {
"url": "https://github.com/schne324/dragon-drop/issues"
},
"homepage": "https://github.com/schne324/dragon-drop#readme",
"devDependencies": {
"babel-preset-env": "^1.6.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"babelify": "^7.3.0",
"browserify": "^14.4.0",
"cp-dir": "^1.0.3",
"debug": "^3.0.0",
"eslint": "^4.19.1",
"gh-pages": "^1.0.0",
"jsdom": "^11.2.0",
"jsdom-global": "^3.0.2",
"nyc": "^11.6.0",
"proxyquire": "^2.0.1",
"simulant": "^0.2.2",
"tap-spec": "^4.1.1",
"tape": "^4.8.0",
"uglifyify": "^4.0.3",
"watch-run": "^1.2.5"
},
"dependencies": {
"component-emitter": "^1.2.1",
"dom-matches": "^2.0.0",
"dragula": "^3.7.2",
"element-qsa-scope": "^1.0.1",
"live-region": "^1.0.2",
"merge-options": "^1.0.0",
"optimal-select": "^4.0.1"
}
}