@ryami333/react-accessible-accordion
Version:
Accessible Accordion component for React
95 lines (94 loc) • 2.56 kB
JSON
{
"name": "@ryami333/react-accessible-accordion",
"version": "0.8.0",
"description": "Accessible Accordion component for React",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:coverage:watch": "jest --coverage --watch",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"lint": "eslint",
"js": "babel -d dist src",
"js:watch": "npm run js -- --watch",
"css": "cp src/react-accessible-accordion.css dist",
"build": "npm run js -s && npm run css -s",
"start": "npm run js:watch",
"start-demo": "webpack-dev-server --config ./webpack/webpack.config.demo.js",
"pages": "rm -rf pages && cp -R demo pages && webpack --config=./webpack/webpack.config.pages.js",
"deploy": "npm run pages && ./bin/deploy.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ryami333/react-accessible-accordion.git"
},
"babel": {
"presets": [
"es2015",
"react"
]
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
]
},
"keywords": [
"react",
"component",
"accordion",
"collapse",
"accessible",
"accessibility"
],
"authors": [
"Vincent Audebert <vincent@springload.co.nz>"
],
"contributors": [
{
"name": "Samantha Sanders"
},
{
"name": "Thibaud Colas"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/springload/react-accessible-accordion/issues"
},
"homepage": "https://github.com/springload/react-accessible-accordion#readme",
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-eslint": "^7.2.1",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"coveralls": "^2.12.0",
"css-loader": "^0.27.3",
"eslint": "^3.18.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"jest": "^19.0.2",
"prop-types": "^15.5.10",
"react": "^15.4.2",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.4.2",
"react-test-renderer": "^15.4.2",
"style-loader": "^0.16.1",
"webpack": "^2.3.2",
"webpack-dev-server": "^2.4.2"
},
"dependencies": {
"classnames": "^2.2.5",
"uuid": "^3.0.1"
},
"peerDependencies": {
"react": "^15.4.0 || ^16.0.0",
"react-dom": "^15.4.0 || ^16.0.0",
"prop-types": "^15.5.10 || ^16.0.0"
}
}