forked from mdreizin/gatsby-plugin-robots-txt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.53 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": "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": "^6.26.0",
"generate-robotstxt": "^5.0.5"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"eslint": "^5.0.0",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-markdown": "^1.0.0-beta.6",
"jest": "^22.4.3",
"memory-fs": "^0.4.1",
"prettier": "^1.12.1",
"semantic-release": "^15.1.7",
"travis-deploy-once": "^5.0.0"
},
"peerDependencies": {
"gatsby": ">2.0.0-alpha"
},
"jest": {
"collectCoverage": true
}
}