-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.46 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.46 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
{
"name": "vue-catch-hrefs",
"version": "1.0.8",
"description": "🔗🔗 Catch clicks on hrefs links (in v-html) and route them to vue-router.",
"main": "dist/vue-catch-hrefs.min.js",
"module": "dist/vue-catch-hrefs.esm.js",
"browser": "dist/vue-catch-hrefs.js",
"unpkg": "dist/vue-catch-hrefs.js",
"types": "src/types/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"test": "exit 0;",
"precommit": "lint-staged",
"build": "node build/build.js",
"lint": "yon run lint:js",
"lint:js": "eslint --ext js --ext jsx --ext vue src test/**/*.spec.js test/*.js build",
"lint:js:fix": "yon run lint:js -- --fix",
"lint:staged": "lint-staged",
"dev": "webpack-dashboard -- webpack-dev-server --config build/webpack.config.dev.js --open"
},
"lint-staged": {
"src/**/*.js": [
"prettier --single-quote --write",
"git add"
],
"examples/**/*.js": [
"prettier --single-quote --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Tahul/vue-catch-hrefs.git"
},
"keywords": [
"vue",
"querystring",
"router",
"sync"
],
"author": "Yaël GUILLOUX <yael.guilloux@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Tahul/vue-catch-hrefs/issues"
},
"homepage": "https://github.com/Tahul/vue-catch-hrefs/issues#readme",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.10",
"babel-eslint": "^10.1.0",
"element-closest-polyfill": "^1.0.2",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-prettier": "^3.3.0",
"lint-staged": "^10.5.3",
"mkdirp": "^1.0.4",
"prettier": "^2.2.1",
"rollup": "^2.35.0",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^7.0.2",
"uglify-js": "^3.12.1",
"uppercamelcase": "^3.0.0",
"vue": "^2.6.12",
"webpack": "^5.10.1",
"webpack-bundle-analyzer": "^4.2.0",
"webpack-merge": "^5.7.0"
},
"peerDependencies": {
"vue": "^2.6.12"
},
"dependencies": {
"add-asset-html-webpack-plugin": "^3.1.3",
"html-webpack-plugin": "^4.5.0",
"webpack-dashboard": "^3.2.1"
}
}