This repository was archived by the owner on Jan 31, 2025. It is now read-only.
forked from schne324/dragon-drop
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.15 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.15 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
66
67
68
{
"name": "drag-on-drop",
"version": "3.4.0",
"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": "rollup -c",
"bundle:min": "rollup -c rollup-min.config.js",
"clean": "rm -rf dist/",
"demo": "mkdir dist/demo && cp-dir ./demo ./dist/demo",
"deploy": "gh-pages -m 'auto commit [ci skip]' -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": "^6.23.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"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.1.0",
"rollup": "^1.0.0",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-uglify": "^6.0.0",
"simulant": "^0.2.2",
"sinon": "^6.1.5",
"tap-spec": "^4.1.1",
"tape": "^4.8.0",
"uglifyify": "^4.0.3",
"watch-run": "^1.2.5"
},
"dependencies": {
"@babel/polyfill": "^7.0.0",
"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",
"optimal-select": "^4.0.1"
}
}