{
  "name": "react-wai-accordion",
  "version": "1.0.0",
  "scripts": {
    "build": "tsc",
    "dev": "parcel src/example/index.html",
    "build:example": "parcel build src/example/index.html --out-dir=dist/example",
    "fmt": "prettier --write *.{json,md} .*.json .circleci/*.js 'src/**/*.{ts,tsx,css}'",
    "lint": "eslint 'src/**/*.{ts,tsx}'",
    "test": "mocha -r ts-node/register -r jsdom-global/register -r src/testutils/enzyme.ts 'src/**/*.test.{ts,tsx}'",
    "coverage": "nyc npm run test",
    "prepublishOnly": "npm run build",
    "release": "standard-version"
  },
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "license": "MPL-2.0",
  "dependencies": {
    "keycode": "^2.2.0",
    "prop-types": "^15.7.2"
  },
  "peerDependencies": {
    "react": "^16"
  },
  "devDependencies": {
    "@types/chai": "^4.2.4",
    "@types/enzyme": "^3.10.3",
    "@types/enzyme-adapter-react-16": "^1.0.4",
    "@types/mocha": "^5.2.6",
    "@types/node": "^12.11.7",
    "@types/prop-types": "^15.7.3",
    "@types/react": "^17.0.3",
    "@types/react-dom": "^17.0.3",
    "@types/sinon": "^7.5.0",
    "@typescript-eslint/eslint-plugin": "^4.20.0",
    "@typescript-eslint/parser": "^4.20.0",
    "axe-core": "^3.4.0",
    "chai": "^4.2.0",
    "enzyme": "^3.8.0",
    "enzyme-adapter-react-16": "^1.15.1",
    "eslint": "^7.23.0",
    "eslint-config-prettier": "^8.1.0",
    "eslint-plugin-jsx-a11y": "^6.4.1",
    "eslint-plugin-react": "^7.23.1",
    "husky": "^6.0.0",
    "jsdom": "^15.2.0",
    "jsdom-global": "^3.0.2",
    "lint-staged": "^10.5.4",
    "mocha": "^6.2.2",
    "nyc": "^14.1.1",
    "ordinal-number-suffix": "^0.1.2",
    "parcel-bundler": "^1.12.4",
    "prettier": "^1.16.4",
    "react": "^16.11.0",
    "react-dom": "^16.11.0",
    "sinon": "^7.5.0",
    "standard-version": "^9.1.1",
    "ts-node": "^8.4.1",
    "typescript": "^3.6.4"
  },
  "prettier": {
    "arrowParens": "avoid",
    "bracketSpacing": true,
    "jsxBracketSameLine": false,
    "printWidth": 80,
    "semi": false,
    "singleQuote": true,
    "useTabs": false
  },
  "nyc": {
    "checkCoverage": true,
    "exclude": [
      "**/*.test.ts",
      "**/*.test.tsx",
      "src/testutils/*.ts",
      "src/testutils/*.tsx"
    ],
    "extension": [
      ".ts",
      ".tsx"
    ],
    "reporter": [
      "text-summary",
      "html"
    ],
    "sourceMap": true,
    "instrument": true,
    "statements": 85,
    "branches": 85,
    "functions": 85,
    "lines": 85
  }
}
