-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.37 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
{
"name": "gatsby-plugin-opensearch",
"version": "1.4.0",
"description": "Gatsby plugin that automatically creates a OpenSearch description file for your website",
"main": "index.js",
"scripts": {
"build": "babel src --out-dir . --ignore \"**/*.spec.js\"",
"watch": "babel -w src --out-dir . --ignore \"**/*.spec.js\"",
"test": "jest",
"prepublish": "npm run build",
"version": "auto-changelog -p && git add CHANGELOG.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/garyforsterio/gatsby-plugin-opensearch.git"
},
"keywords": [
"gatsby",
"gatsby-plugin"
],
"files": [
"/gatsby-node.js",
"/gatsby-ssr.js",
"/createDescriptionFile.js",
"/config.js"
],
"author": "Gary Forster <[email protected]> (https://garyforster.io)",
"license": "MIT",
"bugs": {
"url": "https://github.com/garyforsterio/gatsby-plugin-opensearch/issues"
},
"homepage": "https://github.com/garyforsterio/gatsby-plugin-opensearch#readme",
"engines": {
"node": ">=12.13.0"
},
"dependencies": {
"@babel/runtime": "^7.12.13",
"xml-escape": "^1.1.0"
},
"devDependencies": {
"@babel/cli": "^7.12.16",
"@babel/core": "^7.12.16",
"auto-changelog": "^2.2.1",
"babel-preset-gatsby-package": "^2.9.0",
"jest": "^27.5.1"
},
"peerDependencies": {
"gatsby": "^3.0.0 || ^4.0.0"
}
}