-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.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
{
"name": "vuepress-theme-base",
"version": "0.5.5",
"description": "If you want to create your own VuePress themes, fork the repo!",
"keywords": [
"VuePress",
"Theme",
"Starter"
],
"homepage": "https://petedavisdev.github.io/vuepress-theme-base",
"bugs": {
"url": "https://github.com/petedavisdev/vuepress-theme-base/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/petedavisdev/vuepress-theme-base.git"
},
"license": "MIT",
"author": "Pete Davis (http://petedavis.dev/)",
"main": "theme/index.js",
"scripts": {
"build": "vuepress build example",
"deploy": "npm run build && gh-pages -d example/.vuepress/dist",
"dev": "vuepress dev example --temp .temp",
"lint": "eslint . --ext .js,.vue --fix",
"prepublishOnly": "npm run build && conventional-changelog -p angular -r 2 -i CHANGELOG.md -s",
"start": "npm run lint && npm run dev"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,vue}": [
"eslint --fix",
"git add"
],
"package.json": [
"sort-package-json",
"git add"
]
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"conventional-changelog-cli": "^2.1.0",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.12.0",
"eslint-config-sherry": "0.0.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-vue": "^7.11.1",
"gh-pages": "^3.1.0",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"prettier": "^2.1.2",
"sort-package-json": "^1.46.0",
"vuepress": "^1.6.0"
},
"peerDependencies": {
"vuepress": "^1.6.0"
}
}