-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.26 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
{
"name": "scrapefrom",
"version": "2.6.3",
"description": "Scrape data from any webpage.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "npx eslint 'src/**/*.{js,mjs,cjs,ts}'; exit 0",
"build": "tsc",
"test-cjs": "yarn build && node test/test-cjs.js",
"test-esm": "yarn build && node test/test-esm.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nameer-rizvi/scrapefrom.git"
},
"keywords": [
"webscrape",
"webscraper",
"webcrawl",
"webcrawler",
"crawler",
"html",
"data",
"structured data"
],
"author": "Nameer Rizvi (https://github.com/nameer-rizvi)",
"license": "ISC",
"bugs": {
"url": "https://github.com/nameer-rizvi/scrapefrom/issues"
},
"homepage": "https://github.com/nameer-rizvi/scrapefrom#readme",
"dependencies": {
"@types/jsdom": "^21.1.7",
"cheerio": "^1.0.0",
"cross-fetch": "^4.0.0",
"dottpath": "^0.1.8",
"jsdom": "^25.0.1",
"puppeteer": "^23.5.2",
"simpul": "^1.2.2"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"@types/node": "^22.7.5",
"eslint": "^9.12.0",
"globals": "^15.11.0",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.9.0"
}
}