forked from meteorlxy/vuepress-theme-meteorlxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 2.98 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
103
104
105
106
107
108
109
110
111
112
113
{
"name": "vuepress-theme-meteorlxy",
"version": "1.9.0",
"description": "vuepress blog theme - meteorlxy",
"keywords": [
"blog",
"theme",
"vuepress"
],
"homepage": "https://github.com/meteorlxy/vuepress-theme-meteorlxy",
"bugs": {
"url": "https://github.com/meteorlxy/vuepress-theme-meteorlxy/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/meteorlxy/vuepress-theme-meteorlxy.git"
},
"license": "MIT",
"author": "meteorlxy <[email protected]>",
"main": "lib/index.js",
"files": [
"lib/"
],
"scripts": {
"build": "vuepress build docs --dest docs-dist",
"dev": "vuepress dev docs --no-cache --temp .temp",
"lint": "eslint --ext .js,.vue lib docs",
"semantic-release": "semantic-release",
"serve": "vuepress serve docs --dest docs-dist",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s -r 1 && git add CHANGELOG.md"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{js,vue}": [
"eslint --fix",
"git add"
],
"package.json": [
"sort-package-json",
"git add"
]
},
"eslintConfig": {
"extends": [
"standard",
"plugin:vue/recommended"
],
"rules": {
"comma-dangle": [
"error",
"always-multiline"
],
"dot-notation": [
"error",
{
"allowPattern": "^$"
}
]
},
"root": true
},
"dependencies": {
"@vssue/api-github-v3": "^1.0.0",
"@vssue/vuepress-plugin-vssue": "^1.0.0",
"@vue/babel-helper-vue-jsx-merge-props": "^1.0.0",
"@vue/babel-preset-jsx": "^1.0.0",
"@vuepress/plugin-back-to-top": "^1.3.0",
"@vuepress/plugin-google-analytics": "^1.3.0",
"@vuepress/shared-utils": "^1.3.0",
"date-fns": "^1.30.1",
"geopattern": "^1.2.3",
"lodash.debounce": "^4.0.8",
"lodash.throttle": "^4.1.1",
"markdown-it-center-text": "^1.0.4",
"vuepress-plugin-container": "^2.1.2",
"vuepress-plugin-nprogress": "^1.1.6",
"vuepress-plugin-redirect": "^1.2.3",
"vuepress-plugin-serve": "^2.0.0",
"vuepress-plugin-smooth-scroll": "^0.0.9",
"vuepress-plugin-table-of-contents": "^1.1.5",
"vuepress-plugin-zooming": "^1.1.7"
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"conventional-changelog-cli": "^2.0.21",
"eslint": "^6.3.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^6.1.2",
"husky": "^3.0.5",
"lint-staged": "^9.2.5",
"semantic-release": "^17.0.7",
"sort-package-json": "^1.22.1",
"vuepress": "^1.3.0"
},
"peerDependencies": {
"vuepress": "^1.3.0"
}
}