-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.49 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
{
"name": "@trussle/gatsby-plugin-robots-txt",
"files": [
"gatsby-*.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": "babel src --out-dir ./ --source-maps --watch"
},
"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.6.0",
"generate-robotstxt": "^8.0.0"
},
"devDependencies": {
"@babel/cli": "^7.6.0",
"@babel/plugin-transform-runtime": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"babel-eslint": "^10.0.3",
"eslint": "^6.4.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-markdown": "^1.0.0",
"jest": "^25.1.0",
"memory-fs": "^0.5.0",
"prettier": "^1.18.2",
"semantic-release": "^17.0.1",
"travis-deploy-once": "^5.0.11"
},
"peerDependencies": {
"gatsby": ">2.0.0"
},
"jest": {
"collectCoverage": true
},
"version": "1.0.0"
}