a11yanalyze
Version:
A command-line tool for developers and QA engineers to test web pages and websites for WCAG 2.2 AA accessibility compliance
83 lines (82 loc) • 2.4 kB
JSON
{
"name": "a11yanalyze",
"version": "0.1.2",
"description": "A command-line tool for developers and QA engineers to test web pages and websites for WCAG 2.2 AA accessibility compliance",
"main": "dist/index.js",
"bin": {
"a11yanalyze": "dist/index.js"
},
"scripts": {
"build": "tsc",
"build:clean": "rm -rf dist && npm run build",
"dev": "ts-node src/index.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write src/**/*.ts",
"format:check": "prettier --check src/**/*.ts",
"start": "node dist/index.js",
"postinstall": "playwright install chromium",
"prepare": "npm run build",
"precommit": "npm run lint && npm run format:check && npm run test",
"validate": "npm run lint && npm run format:check && npm run test && npm run build",
"release": "standard-version",
"release:github": "release-it"
},
"keywords": [
"accessibility",
"wcag",
"a11y",
"cli",
"testing",
"audit",
"compliance"
],
"author": "Phillip Clark <philc_npm@users.noreply.npmjs.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/pclark/a11yanalyze.git"
},
"dependencies": {
"ajv": "^8.17.1",
"axe-core": "^4.8.4",
"chalk": "^5.4.1",
"cli-progress": "^3.12.0",
"commander": "^11.1.0",
"figures": "^6.1.0",
"handlebars": "^4.7.8",
"inquirer": "^12.8.1",
"js-yaml": "^4.1.0",
"node-fetch": "^3.3.2",
"ora": "^8.2.0",
"playwright": "^1.40.1"
},
"devDependencies": {
"@release-it/conventional-changelog": "^10.0.1",
"@types/cli-progress": "^3.11.6",
"@types/figures": "^2.0.0",
"@types/inquirer": "^9.0.8",
"@types/jest": "^29.5.8",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.9.1",
"@types/node-fetch": "^2.6.12",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"prettier": "^3.1.0",
"release-it": "^19.0.4",
"standard-version": "^9.5.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
},
"engines": {
"node": ">=16.0.0"
}
}