{
  "_args": [
    [
      "react-accessible-accordion@3.0.1",
      "C:\\xampp\\htdocs\\rent_now"
    ]
  ],
  "_from": "react-accessible-accordion@3.0.1",
  "_id": "react-accessible-accordion@3.0.1",
  "_inBundle": false,
  "_integrity": "sha512-2OZY6PWVOTYjVRQ5vnzVfvSRvapH1fYHNE6rG0S64cCatf+IOovokZEa4Xzmdl69ebrYO2HU3h8yLlEk9LqwPA==",
  "_location": "/react-accessible-accordion",
  "_phantomChildren": {},
  "_requested": {
    "type": "version",
    "registry": true,
    "raw": "react-accessible-accordion@3.0.1",
    "name": "react-accessible-accordion",
    "escapedName": "react-accessible-accordion",
    "rawSpec": "3.0.1",
    "saveSpec": null,
    "fetchSpec": "3.0.1"
  },
  "_requiredBy": [
    "/"
  ],
  "_resolved": "https://registry.npmjs.org/react-accessible-accordion/-/react-accessible-accordion-3.0.1.tgz",
  "_spec": "3.0.1",
  "_where": "C:\\xampp\\htdocs\\rent_now",
  "bugs": {
    "url": "https://github.com/springload/react-accessible-accordion/issues"
  },
  "contributors": [
    {
      "name": "Vincent Audebert",
      "url": "https://github.com/vincentaudebert"
    },
    {
      "name": "Mitch Ryan",
      "url": "https://github.com/ryami333"
    },
    {
      "name": "Samantha Sanders",
      "url": "https://github.com/samanthaksanders"
    },
    {
      "name": "Thibaud Colas",
      "url": "https://github.com/thibaudcolas"
    },
    {
      "name": "Cate Palmer",
      "url": "https://github.com/catepalmer"
    },
    {
      "name": "Janzen Zarzoso",
      "url": "https://github.com/janzenz"
    }
  ],
  "description": "Accessible Accordion component for React",
  "devDependencies": {
    "@babel/cli": "^7.4.4",
    "@babel/core": "^7.4.5",
    "@babel/plugin-proposal-class-properties": "^7.4.4",
    "@babel/polyfill": "^7.4.4",
    "@babel/preset-env": "^7.4.5",
    "@babel/preset-react": "^7.0.0",
    "@babel/preset-typescript": "^7.1.0",
    "@testing-library/react": "^8.0.4",
    "@types/jest": "^24.0.15",
    "@types/react": "^16.8.22",
    "@types/react-dom": "^16.8.4",
    "@types/react-test-renderer": "^16.8.2",
    "@types/uuid": "^3.4.4",
    "babel-core": "^7.0.0-bridge.0",
    "babel-jest": "^24.8.0",
    "babel-loader": "^8.0.6",
    "coveralls": "^3.0.3",
    "css-loader": "^3.0.0",
    "file-loader": "^4.0.0",
    "gh-pages": "^2.0.1",
    "html-webpack-plugin": "^3.2.0",
    "husky": "^2.4.1",
    "jest": "^24.5.0",
    "lint-staged": "^8.1.5",
    "mini-css-extract-plugin": "^0.7.0",
    "prettier": "^1.16.3",
    "puppeteer": "1.18.1",
    "react": "16.3.2",
    "react-dom": "16.3.3",
    "react-test-renderer": "^16.8.6",
    "rimraf": "^2.6.3",
    "rollup": "^1.7.4",
    "rollup-plugin-babel": "^4.2.0",
    "rollup-plugin-commonjs": "^10.0.0",
    "rollup-plugin-node-resolve": "^5.1.0",
    "rollup-plugin-replace": "^2.1.1",
    "style-loader": "^0.23.1",
    "tslint": "^5.14.0",
    "tslint-config-prettier": "^1.18.0",
    "tslint-microsoft-contrib": "^6.1.0",
    "tslint-plugin-prettier": "^2.0.1",
    "tslint-react": "^4.0.0",
    "typescript": "^3.5.2",
    "uuid": "^3.3.2",
    "webpack": "^4.29.6",
    "webpack-cli": "^3.3.0",
    "webpack-dev-server": "^3.2.1"
  },
  "files": [
    "dist"
  ],
  "homepage": "https://github.com/springload/react-accessible-accordion#readme",
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged && yarn typecheck"
    }
  },
  "jsnext:main": "dist/es/index.js",
  "keywords": [
    "react",
    "component",
    "accordion",
    "collapse",
    "accessible",
    "accessibility",
    "wai-aria",
    "aria",
    "a11y"
  ],
  "license": "MIT",
  "lint-staged": {
    "linters": {
      "*.{ts,tsx}": [
        "yarn lint"
      ]
    }
  },
  "main": "dist/umd/index.js",
  "module": "dist/es/index.js",
  "name": "react-accessible-accordion",
  "peerDependencies": {
    "react": "^16.3.2",
    "react-dom": "^16.3.3"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/springload/react-accessible-accordion.git"
  },
  "scripts": {
    "build": "rimraf \"dist/**/*\" && yarn build:rollup && yarn build:types && yarn build:css",
    "build:css": "cp src/css/*.css dist",
    "build:demo": "rimraf \"demo/dist/**/*\" && yarn webpack --context=demo --mode=production --progress --output-path=demo/dist",
    "build:integration": "rimraf \"integration/dist/**/*\" && yarn webpack --context=integration --mode=production --progress --output-path=integration/dist",
    "build:rollup": "rollup -c",
    "build:types": "yarn tsc --project tsconfig.declaration.json",
    "coveralls": "cat ./coverage/lcov.info | coveralls",
    "deploy": "yarn pages && ./bin/deploy.sh",
    "format": "prettier \"**/*\" --write",
    "lint": "tslint --project .",
    "pages": "yarn build:demo && yarn gh-pages -d demo/dist",
    "prepublishOnly": "yarn typecheck && yarn lint && yarn test && yarn build",
    "start-demo": "webpack-dev-server --context=demo --mode=development --hot",
    "test": "jest",
    "test:coverage": "jest --coverage",
    "test:coverage:watch": "jest --coverage --watch",
    "test:integration": "yarn build:integration && yarn jest --config=integration/jest.config.js integration",
    "test:watch": "jest --watch",
    "typecheck": "tsc --project ."
  },
  "types": "dist/types/index.d.ts",
  "version": "3.0.1"
}
