-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.66 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.66 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
{
"name": "git-scraper",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "Personal price scraper with GitHub Actions, GitHub Pages dashboard, and issue-driven product ingestion.",
"engines": {
"node": ">=22"
},
"scripts": {
"scrape": "node src/scrape.js",
"dev": "cross-env DEBUG=1 node src/scrape.js",
"lint": "eslint --max-warnings=0 .github/scripts src test test_support scripts eslint.config.js",
"validate:catalog": "node scripts/validate_catalog.mjs",
"test": "node --test --experimental-test-isolation=none",
"test:unit": "node --test --experimental-test-isolation=none test/amazon_paapi.test.js test/catalog_schema.test.js test/failure_classification.test.js test/heuristics.test.js test/issue_ingest_parser.test.js test/pool.test.js test/price_parse.test.js test/smoke_real.test.js",
"test:fixtures": "node --test --experimental-test-isolation=none test/extract_price.test.js test/site_regression.test.js",
"test:integration": "node --test --experimental-test-isolation=none test/browser_engines.test.js test/scrape_pipeline.test.js test/storage_manifest.test.js",
"test:coverage:critical": "node src/qa/coverage_gate.js",
"test:precommit": "npm run test:ci",
"smoke:real": "node src/smoke/run_real.js",
"test:ci": "npm run lint && npm run validate:catalog && npm run test:unit && npm run test:fixtures && npm run test:integration && npm run test:coverage:critical"
},
"dependencies": {
"axios": "^1.8.4",
"cheerio": "^1.0.0",
"dotenv": "^16.4.5",
"playwright": "^1.52.0",
"zod": "^3.24.1"
},
"devDependencies": {
"cross-env": "^7.0.3",
"eslint": "^9.38.0"
}
}