-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.21 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
{
"name": "gatsby-plugin-git-lastmod",
"version": "0.2.1",
"description": "Gatsby plugin that adds lastmod field to pages based on git commit data",
"license": "MIT",
"homepage": "https://github.com/vondenstein/gatsby-plugin-git-lastmod",
"author": {
"name": "Stephen Vondenstein",
"email": "[email protected]",
"url": "https://vondenstein.com"
},
"repository": {
"type": "git",
"url": "https://github.com/vondenstein/gatsby-plugin-git-lastmod"
},
"bugs": {
"email": "[email protected]",
"url": "https://github.com/vondenstein/gatsby-plugin-git-lastmod/issues"
},
"keywords": [
"gatsby",
"gatsby-plugin",
"lastmod",
"git",
"sitemap",
"seo"
],
"main": "index.js",
"scripts": {
"test": "echo \"No tests specified\" && exit 0",
"build": "babel src --out-dir . --ignore \"**/__tests__\""
},
"dependencies": {
"simple-git": "^3.17.0"
},
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.3",
"babel-preset-gatsby-package": "^3.8.0"
},
"peerDependencies": {
"gatsby": "^5.0.0",
"react": "^18.0.0 || ^0.0.0",
"react-dom": "^18.0.0 || ^0.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}