UNPKG

@helptheweb/accessibility-engine

Version:

Custom accessibility testing engine for WCAG compliance

84 lines (83 loc) 2.05 kB
{ "name": "@helptheweb/accessibility-engine", "version": "1.4.0", "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/" } }