-
-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
53 lines (53 loc) · 1.32 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
{
"name": "webster",
"version": "1.12.1",
"description": "a reliable web crawling & scraping framework for Node.js.",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/mocha test/test.js",
"postinstall": "npx playwright install && opencollective-postinstall || true",
"lint": "./node_modules/.bin/eslint ./lib/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zhuyingda/webster.git"
},
"keywords": [
"spider",
"crwal",
"scrape",
"grab"
],
"author": "zhuyingda",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/zhuyingda/webster/issues"
},
"engines": {
"node": ">=16.0.0"
},
"homepage": "https://github.com/zhuyingda/webster#readme",
"dependencies": {
"jsdom": "^16.4.0",
"log4js": "^6.3.0",
"opencollective-postinstall": "^2.0.2",
"playwright": "^1.46.1",
"puppeteer": "^23.1.0",
"redis": "^3.1.2",
"request": "^2.88.0",
"uuid": "^3.1.0"
},
"devDependencies": {
"eslint": "^8.33.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"mocha": "^10.7.3",
"proxyquire": "^2.1.3"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/webster"
}
}