-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.65 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
{
"main": "src/drivers/driver.js",
"bin": {
"wappalyzer": "./cli.js"
},
"dependencies": {
"puppeteer": "~25.8.0"
},
"devDependencies": {
"@google-cloud/bigquery": "9.0.2",
"@google-cloud/storage": "8.0.1",
"@prantlf/jsonlint": "17.0.1",
"eslint": "10.9.0",
"eslint-plugin-jsonc": "3.4.1",
"eslint-plugin-prettier": "5.5.6",
"globals": "^17.11.0",
"jest": "30.4.2",
"prettier": "3.9.6",
"webpagetest": "github:HTTPArchive/WebPageTest.api-nodejs"
},
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"lint": "eslint --exit-on-fatal-error --max-warnings 0 && jsonlint -jksV ./schema.json --trim-trailing-commas --enforce-double-quotes ./src/technologies/ && jsonlint -js --trim-trailing-commas --enforce-double-quotes ./src/categories.json",
"lint:fix": "eslint --exit-on-fatal-error --fix && jsonlint -isV ./schema.json --trim-trailing-commas --enforce-double-quotes ./src/technologies/ && jsonlint -is --trim-trailing-commas --enforce-double-quotes ./src/categories.json",
"validate": "node ./scripts/validate.js",
"test": "jest",
"tech_upload": "node ./scripts/tech_upload.js",
"sync_icons": "node ./scripts/sync_icons.js",
"sync_icons:all": "node ./scripts/sync_icons.js --all",
"build": "npm run lint && npm run validate"
},
"overrides": {
"glob": "^13.0.0",
"rimraf": "^6.0.0",
"test-exclude": "^7.0.1"
},
"jest": {
"reporters": [
"default",
[
"github-actions",
{
"silent": false
}
]
]
},
"prettier": {
"semi": true,
"singleQuote": true,
"printWidth": 80,
"trailingComma": "none"
}
}