-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.78 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
{
"name": "@holamundo.app/vue-router-qs-binder",
"version": "0.2.0",
"description": "A library that simplifies binding a component's data property with vue-router query strings",
"contributors": [
"Brad Adams <hi@breadadams.com> (https://breadadams.com)"
],
"license": "MIT",
"main": "dist/vue-router-qs-binder.common.js",
"repository": {
"type": "git",
"url": "https://github.com/holamundo-app/vue-router-qs-binder.git"
},
"files": [
"dist/*.js",
"dist/*.js.map"
],
"keywords": [
"query string",
"history",
"vue",
"router"
],
"scripts": {
"serve": "vue-cli-service serve ./demo",
"build": "vue-cli-service build --target lib --name vue-router-qs-binder --report ./src/index.js",
"lint": "vue-cli-service lint",
"flow": "./node_modules/.bin/flow",
"build:demo": "vue-cli-service build --name vue-router-qs-binder-demo ./demo/index.js",
"prepublishOnly": "yarn build"
},
"peerDependencies": {
"vue": ">= 2.6",
"vue-router": ">= 3"
},
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/preset-flow": "^7.7.4",
"@vue/cli-plugin-babel": "^4.1.2",
"@vue/cli-plugin-eslint": "^4.1.2",
"@vue/cli-service": "^4.1.2",
"@vue/eslint-config-prettier": "^6.0.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"eslint": "^6.8.0",
"eslint-plugin-vue": "^6.1.1",
"flow-bin": "^0.114.0",
"husky": "^3.1.0",
"node-sass": "^4.13.0",
"polished": "^3.4.2",
"pretty-quick": "^2.0.1",
"randomcolor": "^0.5.4",
"sass-loader": "^8.0.0",
"vue": "^2.6.11",
"vue-router": "^3.1.3",
"vue-template-compiler": "^2.6.11"
},
"dependencies": {
"lodash": "^4.17.15"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}