-
Notifications
You must be signed in to change notification settings - Fork 239
/
Copy pathpackage.json
88 lines (88 loc) · 3.03 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
88
{
"name": "vue-draggable-resizable-gorkys",
"version": "2.4.8",
"author": "Maurizio Bonani <[email protected]>",
"main": "dist/VueDraggableResizable.umd.min.js",
"unpkg": "dist/VueDraggableResizable.umd.min.js",
"browser": {
"./sfc": "src/vue-draggable-resizable.vue"
},
"private": false,
"description": "Vue 用于可调整大小和可拖动元素的组件并支持冲突检测与吸附对齐",
"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 VueDraggableResizable ./src/index.js",
"unit": "cross-env BABEL_ENV=test mocha-webpack --webpack-config=webpack.test.js tests/unit/specs/**/*.js",
"unit-watch": "cross-env BABEL_ENV=test mocha-webpack --watch --webpack-config=webpack.test.js tests/unit/specs/**/*.js",
"feature": "cross-env BABEL_ENV=test node_modules/karma/bin/karma start tests/feature/karma.conf.js --single-run",
"feature-watch": "cross-env BABEL_ENV=test node_modules/karma/bin/karma start tests/feature/karma.conf.js",
"test": "npm run unit && npm run feature",
"storybook": "start-storybook -p 9001 -c .storybook",
"gh-pages:clean": "rm -rf docs",
"gh-pages:build": "build-storybook -c .storybook -o docs",
"gh-pages:publish": "$(npm bin)/git-directory-deploy --directory docs",
"gh-pages": "npm run gh-pages:clean && npm run gh-pages:build && npm run gh-pages:publish"
},
"devDependencies": {
"@babel/core": "^7.6.0",
"@storybook/addon-notes": "^5.1.11",
"@storybook/vue": "^5.1.11",
"@vue/cli-plugin-babel": "^3.11.0",
"@vue/cli-plugin-eslint": "^3.11.0",
"@vue/cli-service": "^4.3.1",
"@vue/eslint-config-standard": "^4.0.0",
"@vue/test-utils": "^1.0.0-beta.29",
"babel-plugin-istanbul": "^5.2.0",
"babel-preset-vue": "^2.0.2",
"chai": "^4.1.2",
"cross-env": "^5.2.1",
"git-directory-deploy": "^1.5.1",
"karma": "^5.0.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.1",
"karma-coverage-istanbul-reporter": "^2.1.0",
"karma-mocha": "^1.3.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.32",
"karma-webpack": "^4.0.2",
"mocha": "^6.2.0",
"mocha-webpack": "^2.0.0-beta.0",
"sinon": "^7.4.2",
"style-loader": "^1.0.0",
"syn": "^0.14.1",
"vue": "^2.5.21",
"vue-template-compiler": "^2.5.21",
"webpack": "^4.42.1"
},
"files": [
"/dist/*",
"/src/*",
"*.json",
"*.js"
],
"engines": {
"node": ">= 4.0.0",
"npm": ">= 3.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/gorkys/vue-draggable-resizable-gorkys.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/gorkys/vue-draggable-resizable-gorkys/issues"
},
"homepage": "https://github.com/gorkys/vue-draggable-resizable-gorkys",
"keywords": [
"vue",
"component",
"dragabble",
"resizable"
],
"dependencies": {
"core-js": "^2.6.11"
}
}