-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.26 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
62
63
64
{
"name": "pa-website-validator-ng",
"version": "1.0.17",
"main": "index.js",
"type": "module",
"scripts": {
"build": "rm -rf dist && tsc && npm run copy-files",
"build:win": "rd /s /q dist && tsc && npm run copy-files",
"prepare": "npx puppeteer browsers install chrome-headless-shell && npm run build",
"copy-files": "copyfiles -u 1 \"src/**/*.{ejs,json,scss,css,map}\" dist/",
"lint:check": "eslint --max-warnings 0 ./src",
"lint:fix": "eslint --fix ./src",
"type:check": "tsc --noEmit",
"format:check": "prettier -c .",
"format:write": "prettier --write .",
"test:server": "cd external_files && http-server -p 9999",
"test": "jest --detectOpenHandles --forceExit",
"test:audits": "JEST_PATH=src/audits jest --detectOpenHandles --verbose --forceExit",
"test:gatherers": "JEST_PATH=src/gatherers jest --detectOpenHandles --verbose --forceExit",
"updateGeoIPData": "npm explore geoip-lite -- npm run updatedb"
},
"author": "Presidenza del Consiglio dei Ministri",
"license": "BSD-3-Clause",
"description": "Applicativo desktop a supporto degli sviluppatori che aiuta a valutare la qualità dei siti istituzionali di Comuni e scuole.",
"bin": {
"pa-website-validator-ng": "dist/index.js"
},
"devDependencies": {
"@types/ejs": "^3.1.5",
"@types/geoip-lite": "^1.4.4",
"@types/get-ssl-certificate": "^2.3.3",
"@types/inquirer": "^9.0.7",
"@types/jest": "^29.5.13",
"@types/validator": "^13.12.2",
"@types/yargs": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.12.2",
"copyfiles": "^2.4.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"typescript": "^5.5.4"
},
"dependencies": {
"axios": "^1.7.4",
"cheerio": "^1.0.0-rc.12",
"compare-versions": "^6.1.1",
"dotenv": "^16.4.5",
"ejs": "^3.1.10",
"geoip-lite": "^1.4.10",
"get-ssl-certificate": "^2.3.3",
"glob": "^11.0.0",
"http-server": "^14.1.1",
"inquirer": "^10.1.8",
"jsonschema": "^1.4.1",
"lighthouse": "^12.2.0",
"lru-cache": "^11.0.1",
"puppeteer": "^23.5.0",
"validator": "^13.12.0",
"yargs": "^17.7.2"
}
}