-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2 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
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
{
"name": "@helptheweb/accessibility-engine",
"version": "1.4.1",
"description": "Custom accessibility testing engine for WCAG compliance",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"type": "module",
"bin": {
"helptheweb": "./dist/cli/index.js"
},
"scripts": {
"build": "bun run scripts/build-simple.js",
"build:full": "bun run scripts/build.js",
"test": "bun test",
"dev": "bun run example.js",
"lint": "eslint src/**/*.js",
"format": "prettier --write src/**/*.js",
"cli": "bun run src/cli/index.js",
"api": "node src/api/index.js",
"api:dev": "NODE_ENV=development node src/api/index.js",
"prepublishOnly": "bun run build",
"publish:patch": "bun run scripts/publish.js patch",
"publish:minor": "bun run scripts/publish.js minor",
"publish:major": "bun run scripts/publish.js major",
"size": "npm pack --dry-run"
},
"keywords": [
"accessibility",
"a11y",
"wcag",
"wcag22",
"testing",
"web",
"aria",
"screen-reader",
"disability",
"compliance",
"audit",
"checker"
],
"author": "HelpTheWeb",
"license": "MIT",
"dependencies": {
"chalk": "^5.3.0",
"commander": "^11.1.0",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"ora": "^7.0.1"
},
"optionalDependencies": {
"jsdom": "^23.0.0",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@types/bun": "latest",
"@types/jsdom": "^21.1.6",
"@types/node": "^20.10.0",
"eslint": "^8.50.0",
"prettier": "^3.0.3",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=18.0.0",
"bun": ">=1.0.0"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/helptheweb/engine.git"
},
"bugs": {
"url": "https://github.com/helptheweb/engine/issues"
},
"homepage": "https://helptheweb.org",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}