-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 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
{
"name": "robots-parse",
"version": "0.1.0",
"description": "A lightweight and simple robots.txt parser in node",
"homepage": "https://github.com/b4dnewz/robots-parse",
"author": {
"name": "b4dnewz",
"email": "[email protected]",
"url": "https://b4dnewz.github.io/"
},
"files": [
"lib"
],
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"license": "MIT",
"repository": "b4dnewz/robots-parse",
"keywords": [
"parser",
"robots-parser",
"osint"
],
"scripts": {
"pretest": "npm run lint",
"prebuild": "npm run test",
"prepublish": "npm run build",
"lint": "tslint -p . --fix",
"test": "jest --coverage",
"build": "tsc"
},
"dependencies": {
"@types/nock": "^10.0.3",
"follow-redirects": "^1.7.0",
"nock": "^10.0.6"
},
"devDependencies": {
"@b4dnewz/express-test-server": "^0.1.0",
"@types/follow-redirects": "^1.5.0",
"@types/jest": "^24.0.15",
"@types/node": "^12.6.6",
"coveralls": "^3.0.5",
"jest": "^24.8.0",
"ts-jest": "^24.0.2",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"typescript": "^3.5.3"
}
}