-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.63 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.63 KB
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
57
58
59
60
61
62
63
64
65
{
"name": "scrapa",
"version": "0.3.3",
"description": "Scrape Parse Transform Repeat",
"main": "./src/scrapa.js",
"type": "module",
"engines": {
"node": ">= 20.0.0"
},
"scripts": {
"test": "node --experimental-vm-modules node_modules/.bin/jest",
"coverage": "node --experimental-vm-modules node_modules/.bin/jest --collect-coverage",
"postinstall": "node tasks/postinstall.js || exit 0",
"lint": "eslint src/** tests/**"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LandRover/scrapa.git"
},
"keywords": [],
"author": "Oleg Glozman <git@landroverz.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/LandRover/scrapa/issues"
},
"homepage": "https://github.com/LandRover/scrapa#readme",
"dependencies": {
"cheerio": "^1.2.0",
"fast-xml-parser": "^5.5.9",
"https-proxy-agent": "^8.0.0",
"json-2-csv": "^5.5.10",
"node-fetch": "^3.3.2",
"puppeteer": "^24.40.0",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"random-useragent": "^0.5.0"
},
"devDependencies": {
"@babel/preset-env": "^7.29.2",
"babel-jest": "^30.3.0",
"eslint": "^10.1.0",
"jest": "^30.3.0",
"nock": "^14.0.11",
"ts-jest": "^29.4.6"
},
"jest": {
"testTimeout": 60000,
"preset": "ts-jest",
"testEnvironment": "node",
"transform": {
"^.+\\.(js)$": "babel-jest"
},
"moduleDirectories": [
"<rootDir>/src",
"node_modules"
],
"testPathIgnorePatterns": [
"<rootDir>/tests/fixtures/"
],
"moduleFileExtensions": [
"js"
],
"verbose": false
}
}