-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
58 lines (58 loc) · 1.71 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
{
"name": "gatsby-plugin-advanced-sitemap",
"description": "Advanced plugin for generating configurable XML sitemaps with linked media for better SEO and human-readable XSL templates.",
"version": "2.1.0",
"license": "MIT",
"author": "Ghost Foundation",
"homepage": "https://ghost.org/docs/jamstack/gatsby/",
"repository": {
"type": "git",
"url": "https://github.com/tryghost/gatsby-plugin-advanced-sitemap.git"
},
"engines": {
"node": ">= 12.19.0"
},
"bugs": {
"url": "https://github.com/tryghost/gatsby-plugin-advanced-sitemap/issues"
},
"main": "index.js",
"keywords": [
"gatsby",
"gatsby-plugin"
],
"scripts": {
"lint": "eslint --ext .js -c .eslintrc.js --cache src/**",
"test": "jest .",
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production yarn build",
"watch": "babel -w src --out-dir . --ignore **/__tests__",
"ship": "STATUS=$(git status --porcelain); echo $STATUS; if [ -z \"$STATUS\" ]; then yarn publish && git push --follow-tags; fi"
},
"peerDependencies": {
"gatsby": "^4.0.0 || ^5.0.0"
},
"devDependencies": {
"@babel/cli": "7.14.3",
"@babel/core": "7.14.3",
"babel-eslint": "10.1.0",
"babel-jest": "26.6.3",
"babel-preset-gatsby-package": "1.5.0",
"cross-env": "7.0.3",
"eslint": "7.30.0",
"eslint-plugin-ghost": "2.5.0",
"eslint-plugin-jest": "24.3.6",
"eslint-plugin-react": "7.24.0",
"gatsby": "3.5.0",
"jest": "26.6.3",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"dependencies": {
"@babel/runtime": "7.14.0",
"fs-extra": "10.1.0",
"lodash": "4.17.21",
"moment": "2.29.1",
"pify": "5.0.0",
"xml": "^1.0.1"
}
}