-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.45 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": "gridsome-plugin-robots",
"version": "0.2.0",
"files": [
"dist",
"README.md"
],
"main": "dist/gridsome.server.js",
"description": "Gridsome plugin that automatically creates robots.txt for your site",
"scripts": {
"clean": "rm -rf gridsome*.js",
"lint": "eslint --ext js,md ./ --cache",
"test": "jest --color",
"format": "prettier --write 'src/*.js' 'README.md'",
"build": "babel src --out-dir ./dist --source-maps",
"watch": "babel src --out-dir ./dist --source-maps --watch"
},
"homepage": "https://github.com/rkalkani/gridsome-plugin-robots",
"repository": {
"type": "git",
"url": "https://github.com/rkalkani/gridsome-plugin-robots.git"
},
"bugs": {
"url": "https://github.com/rkalkani/gridsome-plugin-robots/issues"
},
"license": "MIT",
"keywords": [
"gridsome",
"gridsome-plugin"
],
"dependencies": {
"@babel/runtime": "^7.8.4",
"generate-robotstxt": "^8.0.1"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.6",
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-markdown": "^1.0.2",
"jest": "^25.1.0",
"memfs": "^3.1.1",
"prettier": "^1.19.1",
"semantic-release": "^17.0.4",
"travis-deploy-once": "^5.0.11"
},
"peerDependencies": {
"gridsome": ">0.6"
},
"jest": {
"collectCoverage": true
}
}