This repository has been archived by the owner on Sep 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
63 lines (63 loc) · 2 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
{
"name": "@adamdehaven/vue-custom-tooltip",
"version": "1.4.4",
"description": "A customizable, reusable, and reactive tooltip component for Vue (and VuePress) projects.",
"keywords": [
"Vue",
"tooltip",
"component",
"VuePress"
],
"repository": {
"type": "git",
"url": "https://github.com/adamdehaven/vue-custom-tooltip.git"
},
"author": "Adam DeHaven <adam@dehaven.org> (https://www.adamdehaven.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/adamdehaven/vue-custom-tooltip/issues"
},
"scripts": {
"build": "npm run prettier:fix && npm run delete:dist && npm run build:ssr & npm run build:es & npm run build:unpkg",
"build:ssr": "rollup --config rollup.config.js --format cjs --file dist/vue-custom-tooltip.ssr.js",
"build:es": "rollup --config rollup.config.js --format es --file dist/vue-custom-tooltip.esm.js",
"build:unpkg": "rollup --config rollup.config.js --format iife --file dist/vue-custom-tooltip.min.js",
"delete:dist": "del-cli ./dist/*",
"version": "npm run build && git add -A",
"postversion": "git push && git push --tags",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write ."
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"main": "dist/vue-custom-tooltip.ssr.js",
"browser": "dist/vue-custom-tooltip.esm.js",
"module": "dist/vue-custom-tooltip.esm.js",
"unpkg": "dist/vue-custom-tooltip.min.js",
"files": [
"dist/*",
"src/**/*.vue"
],
"dependencies": {
"core-js": "^3.8.3",
"vue": "^2.6.12"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^4.5.11",
"@vue/cli-service": "^4.5.11",
"del-cli": "^3.0.1",
"husky": "4",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"rollup": "^2.38.5",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-vue": "^6.0.0",
"stylus": "^0.54.8",
"stylus-loader": "^5.0.0",
"vue-template-compiler": "^2.6.12"
}
}