-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.1 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
{
"name": "lps-crawler-desktop",
"version": "1.0.0",
"description": "Production-grade web scraping tool with advanced crawling algorithms and desktop GUI",
"main": "desktop/main.js",
"scripts": {
"start": "node start-desktop.js",
"serve": "node serve-gui.js",
"dev": "NODE_ENV=development node start-desktop.js",
"test": "node test-implementation.js",
"test:unit": "jest --testPathIgnorePatterns=comprehensive-integration",
"test:integration": "jest tests/comprehensive-integration.test.js --runInBand --detectOpenHandles",
"test:all": "jest --runInBand --detectOpenHandles"
},
"keywords": [
"web-scraping",
"crawler",
"desktop-app",
"electron",
"production-grade"
],
"author": "Production-Grade Implementer",
"license": "Apache-2.0",
"dependencies": {
"electron": "^39.2.7",
"puppeteer": "^24.34.0",
"robots-parser": "^3.0.1",
"winston": "^3.19.0"
},
"engines": {
"node": ">=14.0.0"
},
"devDependencies": {
"eslint": "^8.57.1",
"eslint-plugin-node": "^11.1.0",
"globals": "^17.7.0",
"jest": "^30.2.0"
}
}