forked from CollierCZ/gatsby-transformer-gitinfo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.16 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
{
"name": "@genoswitch/gatsby-transformer-gitinfo",
"description": "Gatsby transformer plugin that adds git info to File nodes created by gatsby-source-filesystem",
"version": "1.4.0-1",
"author": "Aaron Collier",
"bugs": {
"url": "https://github.com/CollierCZ/gatsby-transformer-gitinfo/issues"
},
"dependencies": {
"@babel/runtime": "7.22.15",
"simple-git": "3.19.1"
},
"devDependencies": {
"@babel/cli": "7.22.15",
"@babel/core": "7.23.5",
"babel-preset-gatsby-package": "3.12.0",
"cross-env": "7.0.3",
"jest": "29.6.4"
},
"homepage": "https://github.com/CollierCZ/gatsby-transformer-gitinfo",
"keywords": [
"gatsby",
"gatsby-plugin",
"git"
],
"license": "MIT",
"peerDependencies": {
"gatsby": "^3.0.0 || ^4.0.0 || ^5.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/CollierCZ/gatsby-transformer-gitinfo.git"
},
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
"watch": "babel -w src --out-dir . --ignore **/__tests__",
"test": "jest"
},
"engines": {
"node": ">=8.0.0"
}
}