-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
46 lines (46 loc) · 1.3 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
{
"name": "v-drag-drop",
"version": "4.0.0",
"description": "Minimalistic drag & drop directives for Vue.js",
"keywords": [
"vue",
"vuejs",
"directive",
"drag-and-drop",
"javascript"
],
"author": "Simon Ismair",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Aletheios/v-drag-drop"
},
"main": "dist/vDragDrop.js",
"scripts": {
"build": "webpack --env dev && webpack --env build",
"demo": "http-server -p 1337",
"dev": "webpack --progress --colors --watch --env dev",
"lint": "eslint --ext js ./src",
"start": "concurrently \"npm:dev\" \"npm:demo\""
},
"devDependencies": {
"@babel/core": "7.12.10",
"@babel/preset-env": "7.12.11",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.1.0",
"babel-loader": "8.2.2",
"babel-plugin-add-module-exports": "1.0.4",
"concurrently": "5.3.0",
"eslint": "7.18.0",
"eslint-loader": "4.0.2",
"http-server": "0.12.3",
"terser": "5.5.1",
"terser-webpack-plugin": "4.2.3",
"webpack": "4.46.0",
"webpack-cli": "3.3.12",
"yargs": "16.2.0"
},
"peerDependencies": {
"vue": ">= 3.0.1"
}
}