UNPKG

@a11ywatch/a11ywatch

Version:

A11yWatch lite sidecar for web accessibility automation.

61 lines (60 loc) 1.93 kB
{ "name": "@a11ywatch/a11ywatch", "version": "0.3.82", "description": "A11yWatch lite sidecar for web accessibility automation.", "main": "./server.js", "author": "Jeff Mendez <jeff@a11ywatch.com>", "keywords": [ "accessibility", "accessibility-automation", "testing", "WCAG", "sidecar", "a11ywatch" ], "scripts": { "test": "npm run test:unit && npm run test:ci", "test:unit": "jest --forceExit", "test:ci": "jest --testPathPattern=ispec\\.js$ --forceExit --passWithNoTests", "build": "tsc", "dev": "ts-node-dev --transpile-only src/server.ts", "dev:node19": "ts-node-dev --transpile-only --no-experimental-fetch src/server.ts", "start": "NODE_ENV=production node ./server.js", "start:prod": "NODE_ENV=production node ./dist/server.js", "start:node19": "NODE_ENV=production node --no-experimental-fetch ./server.js", "start:prod:node19": "NODE_ENV=production node --no-experimental-fetch ./dist/server.js", "pub": "tsc && cp package.json dist && cp yarn.lock dist && cp README.md dist && cp LICENSE dist && cd dist && npm publish --access public" }, "license": "MIT", "dependencies": { "@a11ywatch/client": "^0.0.5", "@a11ywatch/core": "^0.8.17", "@a11ywatch/crawler": "^0.9.3", "@a11ywatch/mav": "^0.7.28", "@a11ywatch/pagemind": "^0.9.62", "@a11ywatch/protos": "^0.4.8" }, "devDependencies": { "@swc/core": "^1.3.58", "@swc/jest": "^0.2.26", "@types/node": "^18.15.10", "jest": "^29.5.0", "ts-node-dev": "^2.0.0", "typescript": "^5.0.4" }, "repository": { "type": "git", "url": "git+https://github.com/a11ywatch/sidecar.git" }, "jest": { "moduleNameMapper": { "^@app/(.*)$": "<rootDir>/src/$1" }, "transform": { "^.+\\.(t|j)sx?$": "@swc/jest" }, "verbose": true, "coverageDirectory": "./coverage/", "collectCoverage": true } }