-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
60 lines (60 loc) · 1.43 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
58
59
60
{
"name": "robots-txt-parser",
"version": "2.0.3",
"description": "A lightweight robots.txt parser for Node.js with support for wildcards, caching and promises.",
"keywords": [
"robots",
"txt",
"robots.txt",
"parser",
"crawler",
"spider",
"bot",
"robotstxt",
"scraper"
],
"main": "src/index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha test/**/*.js",
"test-robots": "mocha test/robots/*.js",
"test-parser": "mocha test/parser/*.js",
"test-util": "mocha test/util/*.js",
"coverage": "nyc --reporter=lcov mocha test/**/*.js --timeout 10s",
"local-coverage": "nyc mocha test/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ChrisAkroyd/robots-txt-parser.git"
},
"author": "Chris Akroyd",
"license": "MIT",
"bugs": {
"url": "https://github.com/ChrisAkroyd/robots-txt-parser/issues"
},
"homepage": "https://github.com/ChrisAkroyd/robots-txt-parser",
"dependencies": {
"fast-url-parser": "^1.1.3",
"is-absolute-url": "^2.1.0",
"simple-get": "^4.0.1"
},
"devDependencies": {
"chai": "^4.3.4",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.23.2",
"lodash": "^4.17.21",
"mocha": "^8.3.2",
"nyc": "^15.1.0"
},
"files": [
"LICENSE",
"README.md",
"CHANGELOG.md",
".eslintrc",
".gitignore",
"src/*.js",
"test/**/*.js"
]
}