UNPKG

addon-screen-reader

Version:
68 lines 1.78 kB
{ "name": "addon-screen-reader", "version": "1.8.6", "description": "A Screen Reader Storybook addon", "keywords": [ "storybook", "addons", "accessibility", "a11y", "screen-reader" ], "publishConfig": { "registry": "https://registry.npmjs.org" }, "repository": "git://github.com/vlaraort/addon-screen-reader.git", "files": [ "dist/**/*", "README.md", "*.js" ], "module": "dist/register.js", "main": "dist/register.js", "author": "Víctor Lara", "license": "MIT", "dependencies": { "@babel/preset-env": "^7.13.8", "@babel/preset-react": "^7.12.13", "@storybook/addons": "^6.1.21", "@storybook/components": "^6.1.21", "query-selector-shadow-dom": "^0.8.0", "react": "^17.0.1", "react-dom": "^17.0.1", "react-toggle-component": "^3.0.8", "styled-components": "^5.2.1" }, "devDependencies": { "@babel/cli": "^7.12.10", "@babel/core": "^7.12.10", "@commitlint/cli": "^11.0.0", "@commitlint/config-conventional": "^11.0.0", "eslint": "^7.2.0", "eslint-config-airbnb": "^18.2.1", "eslint-config-prettier": "^7.1.0", "eslint-plugin-import": "^2.22.1", "eslint-plugin-jsx-a11y": "^6.4.1", "eslint-plugin-prettier": "^3.3.0", "eslint-plugin-react": "^7.21.5", "eslint-plugin-react-hooks": "^4.0.0", "husky": "^4.3.6", "lint-staged": "^10.5.3", "prettier": "^2.2.1" }, "scripts": { "build": "babel ./src --out-dir ./dist", "test": "echo 'no tests specified'", "lint": "eslint ./", "lint:fix": "npm run lint -- --fix" }, "husky": { "hooks": { "pre-commit": "lint-staged", "commit-msg": "commitlint -E HUSKY_GIT_PARAMS" } }, "lint-staged": { "*.js": "eslint --cache --fix" } }