-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.49 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
57
58
59
60
61
{
"name": "scrapa",
"version": "0.2.6",
"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 <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/LandRover/scrapa/issues"
},
"homepage": "https://github.com/LandRover/scrapa#readme",
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"fast-xml-parser": "^4.4.0",
"json-2-csv": "^5.5.1",
"node-fetch": "^3.3.2",
"puppeteer": "^22.12.0",
"random-useragent": "^0.5.0"
},
"devDependencies": {
"@babel/preset-env": "^7.24.7",
"babel-jest": "^29.7.0",
"eslint": "^9.5.0",
"jest": "^29.7.0",
"nock": "^13.5.4",
"ts-jest": "^29.1.5"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"transform": {
"^.+\\.(js)$": "babel-jest"
},
"moduleDirectories": [
"<rootDir>/src",
"node_modules"
],
"testPathIgnorePatterns": [
"<rootDir>/tests/fixtures/"
],
"moduleFileExtensions": [
"js"
],
"verbose": false
}
}