accessible-color-contrast
Version:
CLI tool which checks two colors for a high enough contrast in the context of WCAG 2.2
39 lines (38 loc) • 1.08 kB
JSON
{
"name": "accessible-color-contrast",
"version": "0.0.4",
"description": "CLI tool which checks two colors for a high enough contrast in the context of WCAG 2.2",
"license": "MIT",
"author": "Michael Münzenhofer",
"type": "module",
"main": "index.js",
"keywords": [
"accessibility",
"accessible",
"wcag 2.2",
"color contrast",
"cli",
"tailwind"
],
"repository": {
"type": "git",
"url": "git+https://github.com/StackOverflowIsBetterThanAnyAI/accessible-color-contrast.git"
},
"bin": {
"accessible-color-contrast": "index.js"
},
"scripts": {
"start": "node index.js",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"prettier": "prettier-es5",
"dependencies": {
"@clack/prompts": "^1.5.1",
"@colors/colors": "^1.6.0",
"cli-table3": "^0.6.5"
},
"devDependencies": {
"jest": "^29.7.0",
"prettier-es5": "^0.0.4"
}
}