-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
74 lines (74 loc) · 2.05 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
{
"name": "vue-follow-tooltip",
"version": "1.0.0",
"description": "Tiny vue 3 tooltip directive",
"author": "Ivan Che <[email protected]>",
"scripts": {
"serve": "vue-cli-service serve dev/serve.js",
"build:demo": "vue-cli-service build dev/serve.js --dest demo",
"test": "echo \"Error: no test specified\" && exit 1",
"publish:demo": "gh-pages -d demo",
"prepublish:demo": "npm run build:demo",
"build": "rollup -c",
"prepublishOnly": "npm run build"
},
"main": "dist/vue-follow-tooltip.ssr.js",
"browser": "dist/vue-follow-tooltip.esm.js",
"module": "dist/vue-follow-tooltip.esm.js",
"unpkg": "dist/vue-follow-tooltip.min.js",
"files": [
"dist/*.js",
"src/*.js"
],
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.0",
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"@vue/compiler-sfc": "^3.0.0",
"babel-eslint": "^10.1.0",
"core-js": "^3.6.5",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-vue": "^7.0.0",
"prettier": "^2.4.1",
"rollup": "^2.58.0",
"rollup-plugin-terser": "^7.0.2",
"vue": "^3.0.0"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/vue3-essential",
"eslint:recommended",
"prettier"
],
"parserOptions": {
"parser": "babel-eslint"
},
"rules": {}
},
"bugs": {
"url": "https://github.com/gVguy/vue-follow-tooltip/issues"
},
"homepage": "https://github.com/gVguy/vue-follow-tooltip#readme",
"keywords": [
"tooltip",
"directive",
"vue"
],
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/gVguy/vue-follow-tooltip.git"
},
"dependencies": {
"gh-pages": "^3.2.3"
}
}