-
Notifications
You must be signed in to change notification settings - Fork 78
/
Copy pathpackage.json
102 lines (102 loc) · 2.57 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "vue-router-tab",
"version": "1.0.0-alpha.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/guide/changelog.md -s -r 0"
},
"dependencies": {
"vue": "^2.6.10",
"vue-router": "^3.1.3"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^4.1.0",
"@vue/cli-plugin-eslint": "^4.1.0",
"@vue/cli-plugin-router": "^4.1.0",
"@vue/cli-service": "^4.1.0",
"@vue/eslint-config-standard": "^4.0.0",
"@vuepress/plugin-back-to-top": "^1.2.0",
"@vuepress/plugin-pwa": "^1.2.0",
"babel-eslint": "^10.0.3",
"core-js": "^3.4.4",
"cz-conventional-changelog": "^3.0.2",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.0.0",
"lint-staged": "^9.5.0",
"node-sass": "^4.13.1",
"sass-loader": "^8.0.0",
"vue-template-compiler": "^2.6.10",
"vuepress": "^1.2.0"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/recommended",
"@vue/standard"
],
"rules": {
"no-debugger": "off",
"vue/require-default-prop": false,
"vue/max-attributes-per-line": [
"error",
{
"singleline": 3
}
]
},
"parserOptions": {
"parser": "babel-eslint"
}
},
"eslintIgnore": [
"dist"
],
"browserslist": [
"> 1%",
"last 2 versions"
],
"gitHooks": {
"pre-commit": "lint-staged",
"commit-msg": "node scripts/verify-commit-msg.js"
},
"lint-staged": {
"*.{js,vue}": [
"vue-cli-service lint",
"git add"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}