-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (56 loc) · 1.31 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
{
"name": "@albert-team/spiderman",
"description": "Minimalistic web crawler for Node.js",
"version": "2.1.0",
"license": "MIT",
"author": "Albert Team",
"repository": "github:albert-team/spiderman",
"homepage": "https://github.com/albert-team/spiderman",
"bugs": {
"url": "https://github.com/albert-team/spiderman/issues"
},
"engines": {
"node": ">=14"
},
"files": [
"dist"
],
"types": "dist/index.d.ts",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"build:docs": "rm -rf docs && typedoc src",
"test": "jest",
"prepublishOnly": "rm -rf dist && yarn build"
},
"dependencies": {
"axios": "^0.21.0",
"bottleneck": "^2.19.5",
"pino": "^6.4.0"
},
"devDependencies": {
"@types/jest": "^26.0.4",
"@types/node": "^14.0.23",
"@types/pino": "^6.3.0",
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^4.6.0",
"eslint": "^7.4.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-jest": "^24.0.2",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.1.0",
"prettier": "^2.0.5",
"ts-jest": "^26.1.3",
"typedoc": "^0.20.34",
"typescript": "^4.0.3"
},
"keywords": [
"minimal",
"minimalistic",
"web",
"crawler"
],
"publishConfig": {
"access": "public"
}
}