forked from probil/vue-moveable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.34 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": "vue-moveable",
"version": "0.0.0-semantically-released",
"description": "A Vue Component that creates Moveable, Draggable, Resizable, Scalable, Rotatable, Warpable, Pinchable, Groupable, Snappable",
"main": "./dist/lib/VueMoveable.common.js",
"types": "./index.d.ts",
"scripts": {
"serve": "vue-cli-service serve",
"build:demo": "vue-cli-service build --dest dist/demo",
"build:lib": "vue-cli-service build --target lib --dest dist/lib --name VueMoveable 'src/components/Moveable.vue'",
"lint": "npx eslint --ext .js,.vue src *.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/probil/vue-moveable.git"
},
"files": [
"dist/lib",
"index.d.ts"
],
"author": "Max Lyashuk <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/probil/vue-moveable/issues"
},
"peerDependencies": {
"vue": "~2"
},
"dependencies": {
"moveable": "0.17.10"
},
"devDependencies": {
"@vue/cli-plugin-babel": "4.4.6",
"@vue/cli-plugin-eslint": "4.4.6",
"@vue/cli-service": "4.4.6",
"@vue/eslint-config-airbnb": "5.1.0",
"babel-eslint": "10.1.0",
"core-js": "3.6.5",
"eslint": "7.3.1",
"eslint-plugin-vue": "6.2.2",
"node-sass": "4.14.1",
"sass-loader": "8.0.2",
"vue": "2.6.11",
"vue-template-compiler": "2.6.11"
}
}