support drag and drop for playlist items
This commit is contained in:
parent
80929558e6
commit
fd64c014a3
45 changed files with 4202 additions and 3 deletions
72
dashboard-ui/bower_components/dragula.js/package.json
vendored
Normal file
72
dashboard-ui/bower_components/dragula.js/package.json
vendored
Normal file
|
@ -0,0 +1,72 @@
|
|||
{
|
||||
"name": "dragula",
|
||||
"version": "3.5.1",
|
||||
"description": "Drag and drop so simple it hurts",
|
||||
"main": "dragula.js",
|
||||
"scripts": {
|
||||
"build": "npm run scripts && npm run styles",
|
||||
"deploy": "npm run build && npm run deployment && npm run sync",
|
||||
"deploy-plugins": "npm run deploy-react ; npm run deploy-angular ; cd ../dragula",
|
||||
"deploy-react": "cd ../react-dragula ; npm i -S dragula@* ; git commit package.json -m 'bumped dragula version'; npm run deploy",
|
||||
"deploy-angular": "cd ../angular-dragula ; npm i -S dragula@* ; git commit package.json -m 'bumped dragula version'; npm run deploy",
|
||||
"deployment": "git add dist && npm version ${BUMP:-\"patch\"} --no-git-tag-version && git add package.json && git commit -am \"Autogenerated pre-deployment commit\" && bower version ${BUMP:-\"patch\"} && git reset HEAD~2 && git add . && git commit -am \"Release $(cat package.json | jq -r .version)\" && git push --tags && npm publish && git push",
|
||||
"scripts": "jshint . && browserify -s dragula -do dist/dragula.js dragula.js && uglifyjs -m -c -o dist/dragula.min.js dist/dragula.js",
|
||||
"start": "watchify -dvo example/example.min.js example/example.js & watchify -dvs dragula -o dist/dragula.js dragula.js & stylus -w dragula.styl --import node_modules/nib -o dist",
|
||||
"styles": "stylus dragula.styl --import node_modules/nib -o dist && cleancss dist/dragula.css -o dist/dragula.min.css",
|
||||
"sync": "git checkout gh-pages ; git merge master ; git push ; git checkout master",
|
||||
"lint": "jshint . --reporter node_modules/jshint-stylish/index.js",
|
||||
"codestyle": "xo",
|
||||
"test": "npm run lint && npm run codestyle && browserify test/*.js | testron",
|
||||
"test-watch": "hihat test/*.js -p tap-dev-tool"
|
||||
},
|
||||
"xo": {
|
||||
"env": {
|
||||
"browser": true,
|
||||
"node": true
|
||||
},
|
||||
"space": true,
|
||||
"ignores": [
|
||||
"dist/**"
|
||||
],
|
||||
"rules": {
|
||||
"consistent-return": 0,
|
||||
"no-void": 0,
|
||||
"no-inline-comments": 0,
|
||||
"object-curly-spacing": 0,
|
||||
"space-before-function-paren": 0,
|
||||
"no-undef": 0,
|
||||
"brace-style": 0
|
||||
}
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/bevacqua/dragula.git"
|
||||
},
|
||||
"author": "Nicolas Bevacqua <nicolasbevacqua@gmail.com> (http://bevacqua.io/)",
|
||||
"license": "MIT",
|
||||
"bugs": {
|
||||
"url": "https://github.com/bevacqua/dragula/issues"
|
||||
},
|
||||
"homepage": "https://github.com/bevacqua/dragula",
|
||||
"dependencies": {
|
||||
"contra": "1.9.1",
|
||||
"crossvent": "1.5.4"
|
||||
},
|
||||
"devDependencies": {
|
||||
"bower": "1.5.2",
|
||||
"browserify": "11.0.0",
|
||||
"clean-css": "3.3.6",
|
||||
"electron-prebuilt": "0.30.1",
|
||||
"hihat": "1.2.1",
|
||||
"jshint": "2.8.0",
|
||||
"jshint-stylish": "2.0.1",
|
||||
"nib": "1.1.0",
|
||||
"stylus": "0.52.0",
|
||||
"tap-dev-tool": "1.3.0",
|
||||
"tape": "4.0.1",
|
||||
"testron": "1.2.0",
|
||||
"uglify-js": "2.4.24",
|
||||
"watchify": "3.3.0",
|
||||
"xo": "0.7.1"
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue