forked from quasibit/eleventy-plugin-sitemap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.01 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.01 KB
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
{
"name": "@quasibit/eleventy-plugin-sitemap",
"private": false,
"publishConfig": {
"access": "public"
},
"version": "2.0.1",
"engines": {
"node": ">=10.0.0"
},
"description": "Eleventy plugin to generate a sitemap.",
"main": ".eleventy.js",
"scripts": {
"demo": "npx @11ty/eleventy --input=examples --output=examples/_site --config=examples/.eleventy.js",
"test": "run-p -c test:*",
"test:eslint": "eslint \"./**/*.js\" --color",
"test:prettier": "prettier --check ./**/*.js",
"test:demo": "npm run demo",
"format": "prettier --write ./**/*.js",
"commit": "git-cz"
},
"repository": {
"type": "git",
"url": "git+https://github.com/quasibit/eleventy-plugin-sitemap.git"
},
"keywords": [
"11ty",
"eleventy",
"eleventy-plugin",
"sitemap"
],
"author": {
"name": "Nuno Freitas",
"email": "nuno.freitas@quasibit.com",
"homepage": "https://www.quasibit.com/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/quasibit/eleventy-plugin-sitemap/issues"
},
"homepage": "https://github.com/quasibit/eleventy-plugin-sitemap#readme",
"dependencies": {
"sitemap": "^6.1.5"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"commitizen": "^4.1.2",
"cz-conventional-changelog": "^3.2.0",
"eslint": "^7.2.0",
"eslint-config-hardcore": "^12.2.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.10",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"semantic-release": "^17.0.8"
},
"peerDependencies": {
"@11ty/eleventy": "^0.11.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --cache --fix",
"prettier --write"
]
}
}