UNPKG

react-accessible-treeview

Version:

A react component that implements the treeview pattern as described by the WAI-ARIA Authoring Practices.

99 lines (98 loc) 3.04 kB
{ "name": "react-accessible-treeview", "description": "A react component that implements the treeview pattern as described by the WAI-ARIA Authoring Practices.", "version": "2.11.2", "author": "lissitz (https://github.com/lissitz)", "main": "dist/react-accessible-treeview.cjs.js", "module": "dist/react-accessible-treeview.esm.js", "types": "dist/index.d.ts", "peerDependencies": { "classnames": "^2.2.6", "prop-types": "^15.7.2", "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0", "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" }, "devDependencies": { "@babel/core": "^7.5.5", "@babel/plugin-proposal-object-rest-spread": "^7.5.5", "@babel/preset-env": "^7.5.5", "@babel/preset-react": "^7.0.0", "@storybook/addon-actions": "^6.5.16", "@storybook/addon-links": "^6.5.16", "@storybook/addons": "^6.5.16", "@storybook/react": "^7.0.7", "@testing-library/dom": "^8.16.0", "@testing-library/jest-dom": "^5.16.4", "@testing-library/react": "^13.4.0", "@types/jest": "^28.1.3", "@typescript-eslint/eslint-plugin": "^5.30.5", "@typescript-eslint/parser": "^5.30.5", "babel-jest": "^28.1.3", "babel-loader": "^8.2.5", "classnames": "^2.2.6", "eslint": "^8.19.0", "eslint-config-react-app": "^7.0.1", "eslint-plugin-flowtype": "^4.7.0", "eslint-plugin-import": "^2.26.0", "eslint-plugin-jsx-a11y": "^6.6.0", "eslint-plugin-react": "^7.30.1", "eslint-plugin-react-hooks": "^4.6.0", "jest": "^28.1.3", "jest-environment-jsdom": "^28.1.3", "lint-staged": "^9.2.2", "prettier": "^1.18.2", "react": "^18.2.0", "react-icons": "^3.7.0", "react-test-renderer": "^18.2.0", "rollup": "^1.16.7", "rollup-plugin-babel": "^4.3.3", "rollup-plugin-commonjs": "^10.0.0", "rollup-plugin-node-resolve": "^5.1.0", "rollup-plugin-terser": "^5.1.1", "rollup-plugin-typescript2": "^0.32.1", "ts-jest": "^28.0.5", "tslib": "^2.4.0", "typescript": "^4.8.4" }, "scripts": { "build": "rollup -c", "dev": "rollup -c -w", "storybook": "start-storybook -p 6006", "build-storybook": "build-storybook", "prepare": "npm run build", "test": "jest --detectOpenHandles", "type-check": "tsc --noEmit", "lint": "eslint \"src/**/*\"" }, "files": [ "dist", "src/index.ts", "src/TreeView/*.ts(x)" ], "license": "MIT", "repository": { "type": "git", "url": "https://github.com/dgreene1/react-accessible-treeview.git" }, "homepage": "https://dgreene1.github.io/react-accessible-treeview/", "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "*.{js,css,json,md}": [ "prettier --write", "eslint --throwOnWarning", "git add" ] }, "keywords": [ "react", "treeview", "a11y", "accessibility", "react-component", "tree" ] }