forked from androidfanatic/v-drag
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.68 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.68 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
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
89
90
91
{
"name": "@geospoc/v-drag",
"description": "A Vue.js draggable directive",
"version": "0.2.2",
"private": false,
"sideEffects": false,
"main": "dist/v-drag.umd.js",
"module": "dist/v-drag.esm.js",
"unpkg": "dist/v-drag.min.js",
"jsdelivr": "dist/v-drag.min.js",
"cdn": "dist/v-drag.js",
"files": [
"dist"
],
"publishConfig": {
"access": "public",
"registry": "https://npm.pkg.github.com"
},
"license": "MIT",
"scripts": {
"build": "npm run bundle && npm run bundle:min",
"bundle": "rollup -c build/rollup.config.js",
"bundle:min": "rollup -c build/rollup.config.min.js",
"lint": "npm run lint:eslint && npm run lint:prettier",
"lintfix": "npm run lint:eslint:fix && npm run lint:prettier:fix",
"lint:eslint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lint:eslint:fix": "eslint --fix --ext .js,.vue --ignore-path .gitignore .",
"lint:prettier": "prettier --check \"{,!(node_modules|dist)/**/}*.{js,vue}\" --ignore-path .gitignore",
"lint:prettier:fix": "prettier --write \"{,!(node_modules|dist)/**/}*.{js,vue}\" --ignore-path .gitignore",
"test": "jest",
"release": "shipjs prepare",
"prepare": "husky install"
},
"dependencies": {
"vue": "^2.6.14"
},
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@geospoc/prettier-config-standard": "^1.0.1",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@vue/compiler-sfc": "3.2.26",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.3",
"babel-plugin-module-resolver": "^4.1.0",
"babel-preset-vue": "^2.0.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-vue": "^2.0.2",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^8.2.0",
"husky": "^6.0.0",
"jest": "^27.4.5",
"prettier": "^2.5.1",
"rollup": "^2.61.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-vue": "^6.0.0",
"shipjs": "0.24.1",
"vue-template-compiler": "^2.6.14"
},
"keywords": [
"drag",
"v-drag",
"drag component"
],
"author": {
"email": "developers@geospoc.com",
"name": "GeoSpoc Developers",
"url": "https://geospoc.com"
},
"contributors": [
"BRANU",
"androidfanatic",
{
"name": "Vinayak Kulkarni",
"email": "inbox.vinayak@gmail.com",
"url": "https://vinayakkulkarni.dev"
}
],
"repository": {
"type": "git",
"url": "git@github.com:geospoc/v-drag.git"
},
"bugs": {
"url": "https://github.com/geospoc/v-drag/issues"
},
"homepage": "https://v-drag.netlify.app/"
}