forked from netlify-labs/netlify-plugin-sitemap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.07 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
{
"name": "@netlify/plugin-sitemap",
"version": "0.5.1",
"description": "",
"main": "index.js",
"scripts": {
"pretest": "ava --reset-cache",
"test": "ava -v",
"watch": "npm test -- --watch -v",
"publish": "git push origin && git push origin --tags",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish"
},
"keywords": [
"netlify",
"netlify-plugin"
],
"files": [
"index.js",
"make_sitemap.js",
"manifest.yml",
"package.json",
"package-lock.json",
"README.md"
],
"author": "David Wells",
"repository": "https://github.com/netlify-labs/netlify-plugin-sitemap",
"bugs": {
"url": "https://github.com/netlify-labs/netlify-plugin-sitemap/issues"
},
"license": "MIT",
"dependencies": {
"globby": "^10.0.1",
"mkdirp": "^1.0.4",
"sitemap": "^3.2.2"
},
"engines": {
"node": ">=8.12.0"
},
"devDependencies": {
"ava": "^2.1.0",
"rimraf": "^3.0.2",
"xml2js": "^0.4.23"
}
}