forked from Aletheios/v-drag-drop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.3 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
{
"name": "v-drag-drop",
"version": "0.2.1",
"description": "Minimalistic drag & drop directives for Vue.js 2",
"keywords": [
"vue",
"vuejs",
"vuejs2",
"vue2",
"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": "concurrently \"webpack --progress --colors --watch --env dev\" \"http-server -p 1337\"",
"lint": "eslint --ext js ./*.js"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.3",
"babel-eslint": "10.0.1",
"babel-loader": "7.1.2",
"babel-plugin-add-module-exports": "1.0.0",
"babel-preset-env": "1.7.0",
"concurrently": "4.1.0",
"eslint": "5.13.0",
"eslint-loader": "2.1.2",
"http-server": "0.11.1",
"terser": "3.11.0",
"terser-webpack-plugin": "1.1.0",
"webpack": "4.29.3",
"webpack-cli": "3.2.3",
"yargs": "12.0.5"
},
"peerDependencies": {
"vue": "2.x"
}
}