├── .gitignore ├── .prettierrc ├── .travis.yml ├── package.json ├── readme.md ├── src ├── __tests__ │ ├── __snapshots__ │ │ └── index.test.js.snap │ └── index.test.js └── index.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielhusar/babel-plugin-react-add-a11y-props/HEAD/.prettierrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielhusar/babel-plugin-react-add-a11y-props/HEAD/.travis.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielhusar/babel-plugin-react-add-a11y-props/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielhusar/babel-plugin-react-add-a11y-props/HEAD/readme.md -------------------------------------------------------------------------------- /src/__tests__/__snapshots__/index.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielhusar/babel-plugin-react-add-a11y-props/HEAD/src/__tests__/__snapshots__/index.test.js.snap -------------------------------------------------------------------------------- /src/__tests__/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielhusar/babel-plugin-react-add-a11y-props/HEAD/src/__tests__/index.test.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielhusar/babel-plugin-react-add-a11y-props/HEAD/src/index.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielhusar/babel-plugin-react-add-a11y-props/HEAD/yarn.lock --------------------------------------------------------------------------------