Skip to content

Commit

Permalink
Update package.json.
Browse files Browse the repository at this point in the history
Improves description, adds bugs url and homepage, adds minimum node
version and includes more files.
  • Loading branch information
samclarke committed Jan 7, 2022
1 parent 68f283e commit 36c7397
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "robots-parser",
"version": "2.4.0",
"description": "NodeJS robots.txt parser with support for wildcard (*) matching.",
"description": "A specification compliant robots.txt parser with wildcard (*) matching support.",
"keywords": [
"robots.txt",
"parser",
Expand All @@ -15,6 +15,10 @@
"directories": {
"test": "tests"
},
"homepage": "https://github.com/samclarke/robots-parser",
"bugs": {
"url": "https://github.com/samclarke/robots-parser/issues"
},
"scripts": {
"test": "nyc --reporter=text-summary --reporter=html --reporter=lcovonly mocha"
},
Expand All @@ -27,8 +31,17 @@
"files": [
"/Robots.js",
"/index.js",
"/index.d.ts"
"/index.d.ts",
"/README.md",
"/LICENSE.md",
"/CHANGELOG.md",
"/SECURITY.md",
"test/*.js",
".gitignore"
],
"engines": {
"node": ">=0.10"
},
"prettier": {
"tabWidth": 4,
"useTabs": true,
Expand Down

0 comments on commit 36c7397

Please sign in to comment.