-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
60 lines (60 loc) · 1.52 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
{
"name": "vuepress-plugin-sitemap",
"version": "2.3.1",
"description": "Sitemap generator plugin for vuepress",
"main": "index.js",
"bin": {
"vuepress-sitemap": "./cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ekoeryanto/vuepress-plugin-sitemap.git"
},
"scripts": {
"release": "release-it",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"documentation",
"vue",
"vuepress",
"vuepress-plugin",
"sitemap",
"generator"
],
"author": "Eko Eryanto <ekoeryanto@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ekoeryanto/vuepress-plugin-sitemap/issues"
},
"homepage": "https://github.com/ekoeryanto/vuepress-plugin-sitemap#readme",
"dependencies": {
"sitemap": "^3.0.0"
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@release-it/conventional-changelog": "^1.1.0",
"conventional-changelog-cli": "^2.0.25",
"eslint": "^6.5.1",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^3.0.9",
"lint-staged": "^9.4.2",
"release-it": "^12.4.3"
},
"peerDependencies": {
"chalk": "^2.0.0",
"commander": "^2.0.0",
"esm": "^3.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}