-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 2.86 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "mo-vue-dnd",
"version": "0.4.4",
"description": "Drag and drop using just Vue.js",
"main": "dist/mo-vue-dnd.cjs.js",
"unpkg": "dist/mo-vue-dnd.umd.js",
"module": "dist/mo-vue-dnd.esm.js",
"style": "dist/mo-vue-dnd.css",
"scripts": {
"lint": "eslint src/**/*.js",
"release": "npm run build:all && npm publish",
"build:all": "npm run build && npm run build:style",
"build": "rollup -c",
"build:style": "gulp scss",
"build:dev": "cross-env NODE_ENV=development webpack --config webpack.config.js --progress",
"simple:dev": "cross-env NODE_ENV=development webpack-dev-server --config examples/simple/webpack.config.js",
"simple:build": "cross-env NODE_ENV=development webpack --config examples/simple/webpack.config.js",
"dndHandle:dev": "cross-env NODE_ENV=development webpack-dev-server --config examples/dndHandle/webpack.config.js",
"dndHandle:build": "cross-env NODE_ENV=development webpack --config examples/dndHandle/webpack.config.js",
"groups:dev": "cross-env NODE_ENV=development webpack-dev-server --config examples/groups/webpack.config.js",
"nested:dev": "cross-env NODE_ENV=development webpack-dev-server --config examples/nested/webpack.config.js",
"nested:build": "cross-env NODE_ENV=production webpack --config examples/nested/webpack.config.js",
"deploy:nested": "npm run nested:build && tools/deploy.sh"
},
"files": [
"dist"
],
"keywords": [
"Drag and drop"
],
"repository": {
"type": "git",
"url": "https://github.com/dinony/mo-vue-dnd.git"
},
"author": "Onur Dogangönül <contact@dinony.com>",
"license": "MIT",
"browserslist": [
"> 1%"
],
"devDependencies": {
"babel-core": "^6.26.0",
"babel-helper-vue-jsx-merge-props": "^2.0.3",
"babel-loader": "^7.1.2",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-es2015-arrow-functions": "^6.22.0",
"babel-plugin-transform-es2015-block-scoping": "^6.26.0",
"babel-plugin-transform-es2015-classes": "^6.24.1",
"babel-plugin-transform-es2015-parameters": "^6.24.1",
"babel-plugin-transform-es2015-shorthand-properties": "^6.24.1",
"babel-plugin-transform-es2015-template-literals": "^6.22.0",
"babel-plugin-transform-vue-jsx": "^3.5.1",
"babel-polyfill": "^6.26.0",
"cross-env": "^5.1.3",
"css-loader": "^0.28.9",
"cssnano": "^3.10.0",
"eslint": "^4.17.0",
"file-loader": "^1.1.6",
"gulp": "^3.9.1",
"gulp-postcss": "^7.0.1",
"gulp-rename": "^1.2.2",
"gulp-sass": "^3.1.0",
"node-sass": "^4.7.2",
"postcss-loader": "^2.1.0",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-filesize": "^1.5.0",
"rollup-plugin-uglify": "^3.0.0",
"sass-loader": "^6.0.6",
"style-loader": "^0.20.0",
"vue": "^2.5.13",
"webpack": "^3.11.0",
"webpack-dev-server": "^2.11.1"
}
}