-
Notifications
You must be signed in to change notification settings - Fork 78
/
Copy pathpackage.json
74 lines (74 loc) · 2.12 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-router-tab",
"version": "1.0.2",
"description": "Vue.js tab components, based on Vue Router",
"keywords": [
"vue",
"router",
"tab"
],
"author": "碧海幽虹 <bhuh12@126.com> (https://bhuh.net)",
"private": false,
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/bhuh12/vue-router-tab.git"
},
"bugs": {
"url": "https://github.com/bhuh12/vue-router-tab/issues"
},
"main": "dist/lib/vue-router-tab.umd.min.js",
"scripts": {
"demo:dev": "vue-cli-service serve --open",
"demo:build": "vue-cli-service build",
"docs:dev": "vuepress dev docs --open",
"docs:build": "vuepress build docs",
"lib:build": "vue-cli-service build --target lib lib/index.js",
"lib:build:report": "vue-cli-service build --report --target lib lib/index.js",
"lib:publish": "npm run lib:build && npm publish",
"lint": "vue-cli-service lint",
"lint:fix": "vue-cli-service lint --fix",
"commit": "git-cz",
"changelog": "conventional-changelog -p angular -i docs/zh/guide/changelog.md -s -r 0"
},
"dependencies": {
"vue": "^2.6.11",
"vue-router": "^3.2.0"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~4.4.0",
"@vue/cli-plugin-eslint": "~4.4.0",
"@vue/cli-plugin-router": "~4.4.0",
"@vue/cli-service": "~4.4.0",
"@vue/eslint-config-prettier": "^6.0.0",
"@vuepress/plugin-back-to-top": "^1.5.2",
"@vuepress/plugin-pwa": "^1.5.2",
"babel-eslint": "^10.1.0",
"core-js": "^3.4.4",
"cz-conventional-changelog": "^3.0.2",
"eslint": "^6.7.2",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-vue": "^6.2.2",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1",
"sass": "^1.26.5",
"sass-loader": "^8.0.2",
"vue-template-compiler": "^2.6.11",
"vuepress": "^1.5.2"
},
"gitHooks": {
"pre-commit": "lint-staged",
"commit-msg": "node scripts/verify-commit-msg.js"
},
"lint-staged": {
"*.{js,jsx,vue}": [
"vue-cli-service lint",
"git add"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}