-
Notifications
You must be signed in to change notification settings - Fork 78
/
Copy pathpackage.json
88 lines (88 loc) · 2.63 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
{
"name": "vue-router-tab",
"version": "1.2.11",
"description": "Vue.js tab components, based on Vue Router",
"keywords": [
"vue-router-tab",
"router-tab",
"tabs"
],
"author": "碧海幽虹 <[email protected]>",
"private": false,
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/bhuh12/vue-router-tab.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"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": "yarn lint:js && yarn lint:css",
"lint:js": "vue-cli-service lint --fix",
"lint:css": "stylelint \"**/*.{css,scss,sass,vue}\" --fix --cache --cache-location node_modules/.cache/stylelint/",
"commit": "git-cz",
"changelog": "conventional-changelog -p angular -i docs/zh/guide/changelog.md -s"
},
"dependencies": {
"vue": "^2.6.14",
"vue-router": "^3.2.0"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~4.5.15",
"@vue/cli-plugin-eslint": "~4.5.15",
"@vue/cli-plugin-router": "~4.5.15",
"@vue/cli-service": "~4.5.15",
"@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",
"conventional-changelog-cli": "^2.1.1",
"core-js": "^3.6.5",
"eslint": "^6.7.2",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-vue": "^7.9.0",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1",
"sass": "^1.26.5",
"sass-loader": "^8.0.2",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-recommended": "^5.0.0",
"stylelint-order": "^4.1.0",
"stylelint-scss": "^3.19.0",
"vue-template-compiler": "^2.6.14",
"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"
}
},
"vetur": {
"tags": "vetur/tags.json",
"attributes": "vetur/attributes.json"
}
}