forked from mauricius/vue-draggable-resizable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.5 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
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "vue-draggable-resizable",
"version": "2.0.1",
"author": {
"name": "Maurizio Bonani",
"email": "[email protected]"
},
"contributors": [
{
"name": "Maurizio Bonani",
"email": "[email protected]"
}, {
"name": "Roman Melnyk",
"email": "[email protected]"
}
],
"main": "dist/index.js",
"jsnext:main": "src/index.js",
"private": false,
"description": "Vue2 Component for resizable and draggable elements",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"build-bundle": "vue-cli-service build --target lib --name vue-draggable-resizable ./src/index.js",
"unit": "cross-env BABEL_ENV=test node_modules/karma/bin/karma start tests/unit/karma.conf.js --single-run",
"unit-watch": "cross-env BABEL_ENV=test node_modules/karma/bin/karma start tests/unit/karma.conf.js",
"storybook": "start-storybook -p 9001 -c .storybook",
"docs": "build-storybook -c .storybook -o docs",
"prepublish": "npm run unit; npm run build-bundle"
},
"peerDependencies": {
"vue": "^2.5.16"
},
"devDependencies": {
"@storybook/addon-notes": "^4.0.0-alpha.16",
"@storybook/vue": "^4.0.0-alpha.16",
"@vue/cli-plugin-babel": "^3.0.1",
"@vue/cli-plugin-eslint": "^3.0.1",
"@vue/cli-service": "^3.0.1",
"@vue/eslint-config-standard": "^3.0.1",
"@vue/test-utils": "^1.0.0-beta.24",
"babel-plugin-istanbul": "^4.1.6",
"chai": "^4.1.2",
"cross-env": "^5.2.0",
"karma": "^3.0.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-coverage-istanbul-reporter": "^2.0.1",
"karma-mocha": "^1.3.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.32",
"karma-webpack": "^3.0.0",
"mocha": "^5.2.0",
"sinon": "^6.1.5",
"style-loader": "^0.22.1",
"syn": "^0.5.0",
"vue-template-compiler": "^2.5.16"
},
"files": [
"dist/*",
"src/*",
"public/*",
"*.json",
"*.js"
],
"engines": {
"node": ">= 4.0.0",
"npm": ">= 3.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Romick2005/vue-draggable-resizable.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Romick2005/vue-draggable-resizable/issues"
},
"homepage": "https://github.com/Romick2005/vue-draggable-resizable",
"keywords": [
"vue",
"component",
"dragabble",
"resizable"
]
}