-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·46 lines (46 loc) · 1.23 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": "gatsby-plugin-guru-export",
"description": "Creates an Guru export for your Gatsby site.",
"version": "0.2.1",
"author": "Sean Kovacs <s.kovacs@calendly.com>",
"bugs": {
"url": "https://github.com/calendly/gatsby-plugin-guru-export"
},
"dependencies": {
"@babel/runtime": "^7.12.5",
"@hapi/joi": "^15.1.1",
"common-tags": "^1.8.0",
"fs-extra": "^9.1.0",
"gatsby-plugin-utils": "^1.5.0-next.0",
"js-yaml": "^4.1.0",
"lodash.merge": "^4.6.2"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"babel-preset-gatsby-package": "^1.5.0-next.0",
"cross-env": "^7.0.3",
"jest": "^26.6.3"
},
"homepage": "https://github.com/calendly/gatsby-plugin-guru-export",
"keywords": [
"gatsby",
"gatsby-plugin",
"guru"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/calendly/gatsby-plugin-guru-export.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": ">=12.13.0"
}
}