-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.54 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.54 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
{
"devDependencies": {
"@google-cloud/bigquery": "8.1.1",
"@google-cloud/storage": "7.19.0",
"@prantlf/jsonlint": "17.0.1",
"eslint": "10.0.3",
"eslint-plugin-jsonc": "3.1.2",
"eslint-plugin-prettier": "5.5.5",
"globals": "^17.4.0",
"jest": "30.3.0",
"prettier": "3.8.1",
"puppeteer": "24.39.1",
"terminal-overwrite": "2.0.1",
"webpagetest": "github:HTTPArchive/WebPageTest.api-nodejs"
},
"engines": {
"node": ">=22.2"
},
"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",
"convert": "node ./scripts/convert.js",
"build": "npm run lint && npm run validate && npm run convert"
},
"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"
}
}