easyui-draganddrop
Version:
Drag and drop elements including a file explorer and a rubbish bin.
37 lines (36 loc) • 1.64 kB
JSON
{
"name": "easyui-draganddrop",
"author": "James Smith",
"version": "5.0.21",
"license": "MIT",
"homepage": "https://github.com/djalbat/EasyUI-DragAndDrop",
"description": "Drag and drop elements including a file explorer and a rubbish bin.",
"repository": {
"type": "git",
"url": "https://github.com/djalbat/EasyUI-DragAndDrop"
},
"dependencies": {},
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.7.5",
"babel-plugin-transform-react-jsx": "^6.7.5",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"browserify": "^13.0.0",
"chokidar-cli": "^1.2.0",
"copyfiles": "^1.0.0",
"easyui": "^7.2.4"
},
"scripts": {
"copy": "copyfiles -f ./node_modules/easyui/dist/easyui.js .",
"clean": "rm -rf ./lib",
"babel": "babel ./es6 --presets=es2015,react --plugins transform-react-jsx --out-dir=./lib",
"babel-debug": "babel ./es6 --presets=es2015,react --plugins transform-react-jsx --source-maps inline --out-dir=./lib",
"browserify": "browserify ./index.js --standalone easyuidraganddrop > ./dist/easyui-draganddrop.js",
"browserify-debug": "browserify ./index.js --standalone easyuidraganddrop --debug > ./dist/easyui-draganddrop.js",
"build": "npm run copy && npm run clean && npm run babel && npm run browserify",
"build-debug": "npm run copy && npm run clean && npm run babel-debug && npm run browserify-debug",
"watch": "npm run build && chokidar './index.js' './es6/**/*.js' -c 'npm run build'",
"watch-debug": "npm run build-debug && chokidar './index.js' './es6/**/*.js' -c 'npm run build-debug'"
}
}