-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
60 lines (60 loc) · 1.52 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
59
60
{
"name": "gatsby-plugin-robots-txt",
"files": [
"gatsby-*.js*",
"src/gatsby-node.js"
],
"main": "index.js",
"description": "Gatsby plugin that automatically creates robots.txt for your site",
"scripts": {
"clean": "rm -rf gatsby-node.js",
"lint": "eslint --ext js,md ./ --cache",
"test": "jest --color",
"format": "prettier --write 'src/*.js' 'README.md'",
"build": "babel src --out-dir ./ --source-maps",
"watch": "yarn build --watch",
"release": "semantic-release"
},
"homepage": "https://github.com/mdreizin/gatsby-plugin-robots-txt",
"repository": {
"type": "git",
"url": "https://github.com/mdreizin/gatsby-plugin-robots-txt.git"
},
"bugs": {
"url": "https://github.com/mdreizin/gatsby-plugin-robots-txt/issues"
},
"author": "Marat Dreizin <marat.dreizin@gmail.com>",
"license": "MIT",
"keywords": [
"gatsby",
"gatsby-plugin"
],
"dependencies": {
"@babel/runtime": "^7.17.9",
"generate-robotstxt": "^8.0.3"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.20.2",
"@babel/eslint-parser": "^7.17.0",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"eslint": "^8.27.0",
"eslint-plugin-markdown": "^2.2.1",
"jest": "^29.3.1",
"memfs": "^3.3.0",
"prettier": "^2.6.2",
"semantic-release": "^19.0.5"
},
"peerDependencies": {
"gatsby": "^5.0.0"
},
"jest": {
"collectCoverage": true
},
"release": {
"branches": [
"main"
]
}
}