react-a11y-disclosure
Version:
A small React hook to build accessible disclosure widgets
42 lines (41 loc) • 1.1 kB
JSON
{
"name": "react-a11y-disclosure",
"version": "0.2.0",
"description": "A small React hook to build accessible disclosure widgets",
"homepage": "https://github.com/KittyGiraudel/react-a11y-disclosure",
"license": "MIT",
"main": "dist/index.js",
"keywords": [
"disclosure",
"accessibility",
"a11y",
"visibility",
"react",
"component"
],
"author": "Kitty Giraudel (https://kittygiraudel.com)",
"files": [
"dist/index.js"
],
"scripts": {
"prepare": "npm run build",
"start": "babel index.js -o dist/index.js -w",
"build": "babel index.js -o dist/index.js",
"test": "npm install react --no-save && jest"
},
"repository": {
"type": "git",
"url": "https://github.com/KittyGiraudel/react-a11y-disclosure/"
},
"devDependencies": {
"@babel/cli": "^7.12.16",
"@babel/preset-env": "^7.12.16",
"@babel/preset-react": "^7.12.13",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"jest": "^26.6.3"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
}
}