-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
57 lines (57 loc) · 1.13 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
{
"name": "robots-parser",
"version": "3.0.1",
"description": "A specification compliant robots.txt parser with wildcard (*) matching support.",
"keywords": [
"robots.txt",
"parser",
"user-agent",
"scraper",
"spider",
"bot",
"robots-exclusion-standard"
],
"main": "index.js",
"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"
},
"repository": {
"type": "git",
"url": "https://github.com/samclarke/robots-parser.git"
},
"author": "Sam Clarke <[email protected]>",
"license": "MIT",
"files": [
"/Robots.js",
"/index.js",
"/index.d.ts",
"/README.md",
"/LICENSE.md",
"/CHANGELOG.md",
"/SECURITY.md",
"test/*.js",
".gitignore"
],
"engines": {
"node": ">=10.0.0"
},
"prettier": {
"tabWidth": 4,
"useTabs": true,
"singleQuote": true,
"trailingComma": "none"
},
"devDependencies": {
"chai": "^4.5.0",
"mocha": "^10.7.3",
"nyc": "^17.1.0"
},
"types": "./index.d.ts"
}