-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
93 lines (93 loc) · 3.17 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@govtechsg/oobee",
"main": "dist/npmIndex.js",
"version": "0.10.18",
"type": "module",
"dependencies": {
"@json2csv/node": "^7.0.3",
"@napi-rs/canvas": "^0.1.53",
"axe-core": "^4.10.2",
"axios": "^1.7.4",
"cheerio": "^1.0.0-rc.12",
"crawlee": "^3.11.1",
"ejs": "^3.1.9",
"file-type": "^19.5.0",
"fs-extra": "^11.2.0",
"glob": "^10.3.10",
"https": "^1.0.0",
"inquirer": "^9.2.12",
"jsdom": "^21.1.2",
"lodash": "^4.17.21",
"mime-types": "^2.1.35",
"minimatch": "^9.0.3",
"pdfjs-dist": "github:veraPDF/pdfjs-dist#v2.14.305-taggedPdf-0.1.11",
"playwright": "^1.44.1",
"prettier": "^3.1.0",
"print-message": "^3.0.1",
"safe-regex": "^2.1.1",
"typescript": "^5.4.5",
"url": "^0.11.3",
"validator": "^13.11.0",
"which": "^4.0.0",
"winston": "^3.11.0",
"xml2js": "^0.6.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3.0.2",
"@eslint/js": "^9.6.0",
"@types/eslint__js": "^8.42.3",
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.7",
"@types/lodash": "^4.17.7",
"@types/safe-regex": "^1.1.6",
"@types/validator": "^13.11.10",
"@types/which": "^3.0.4",
"@types/xml2js": "^0.4.14",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.4",
"eslint-plugin-prettier": "^5.0.0",
"globals": "^15.2.0",
"jest": "^29.7.0",
"typescript-eslint": "^8.3.0"
},
"overrides": {
"node-fetch": "^2.3.0",
"json5": "^2.2.3",
"ansi-regex": "^5.0.1",
"tough-cookie": "^5.0.0-rc.2",
"micromatch": "github:micromatch/micromatch.git#4.0.7"
},
"optionalDependencies": {
"@napi-rs/canvas-darwin-arm64": "^0.1.53",
"@napi-rs/canvas-darwin-x64": "0.1.53",
"@napi-rs/canvas-linux-arm64-gnu": "0.1.53",
"@napi-rs/canvas-linux-arm64-musl": "0.1.53",
"@napi-rs/canvas-linux-x64-gnu": "0.1.53",
"@napi-rs/canvas-linux-x64-musl": "0.1.53",
"@napi-rs/canvas-win32-x64-msvc": "0.1.53"
},
"scripts": {
"build": "npm run copyfiles && tsc",
"build:watch": "npm run build -- --watch",
"copyfiles": "node ./scripts/copyFiles.js src/static/ejs dist/static && node ./scripts/copyFiles.js src/constants/errorMeta.json dist/constants && node ./scripts/copyFiles.js exclusions.txt dist",
"start": "node --max-old-space-size=6144 dist/index.js",
"cli": "node --max-old-space-size=6144 dist/cli.js",
"test": "node --experimental-vm-modules ./node_modules/.bin/jest",
"lint": "eslint . --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint . --fix --report-unused-disable-directives --max-warnings 0"
},
"author": "",
"license": "MIT",
"description": "Oobee is a customisable, automated accessibility testing tool that allows software development teams to assess whether their products are user-friendly to persons with disabilities (PWDs).",
"repository": {
"type": "git",
"url": "git+https://github.com/GovTechSG/oobee.git"
},
"bugs": {
"url": "https://github.com/GovTechSG/oobee/issues"
},
"homepage": "https://github.com/GovTechSG/oobee#readme"
}