-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 937 Bytes
/
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
{
"name": "nscrape",
"version": "0.3.0",
"description": "Node scraper",
"author": "Mihai Rotaru <[email protected]>",
"bin": {
"nscrape": "./src/cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/mrotaru/nscrape.git"
},
"engines": {
"node": ">=12.x"
},
"keywords": [
"scraper",
"scraping"
],
"dependencies": {
"@grpc/grpc-js": "^1.0.3",
"@grpc/proto-loader": "^0.5.4",
"axios": "^0.19.2",
"cheerio": "latest",
"commander": "^5.0.0",
"debug": "^2.1.0",
"deepmerge": "^4.2.2",
"express": "^4.9.4",
"js-beautify": "^1.5.4",
"objects-from-html": "git+https://[email protected]/mrotaru/objects-from-html.git",
"puppeteer-core": "^3.3.0",
"tough-cookie": "^2.3.3",
"validator": "^3.22.1",
"ws": "^7.2.3",
"z-schema": "^3.17.0"
},
"license": "MIT",
"devDependencies": {
"playwright-webkit": "^1.0.2"
}
}