{
  "name": "react-shortcut-manager",
  "version": "2.0.2",
  "description": "Keyboard shortcuts for React",
  "keywords": [
    "react",
    "keyboard",
    "shortcuts"
  ],
  "main": "./lib/index.js",
  "module": "./es/index.js",
  "types": "./es/index.d.ts",
  "sideEffects": false,
  "files": [
    "lib",
    "src",
    "es"
  ],
  "scripts": {
    "start": "webpack-dev-server --open --mode development",
    "prebuild": "yarn clean",
    "build": "yarn build:commonjs && yarn build:es",
    "postbuild": "yarn types",
    "build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib --extensions '.ts','.tsx'",
    "build:es": "cross-env BABEL_ENV=es babel src --out-dir es --extensions '.ts','.tsx'",
    "types": "tsc",
    "clean": "rimraf lib es",
    "prepublishOnly": "yarn build",
    "test": " cross-env BABEL_ENV=test jest --coverage"
  },
  "author": "Hadeeb Farhan <hadeebfarhan1@gmail.com>",
  "license": "MIT",
  "devDependencies": {
    "@babel/cli": "^7.1.2",
    "@babel/core": "^7.1.2",
    "@babel/plugin-proposal-class-properties": "^7.2.3",
    "@babel/plugin-transform-modules-commonjs": "^7.2.0",
    "@babel/plugin-transform-react-jsx": "^7.0.0",
    "@babel/plugin-transform-runtime": "^7.1.0",
    "@babel/preset-env": "^7.1.0",
    "@babel/preset-react": "^7.0.0",
    "@babel/preset-typescript": "^7.1.0",
    "@types/jest": "^24.0.11",
    "@types/react": "^16.8.2",
    "babel-core": "^7.0.0-bridge.0",
    "babel-jest": "^24.1.0",
    "babel-loader": "^8.0.4",
    "cross-env": "^5.2.0",
    "html-webpack-plugin": "^3.2.0",
    "jest": "^24.1.0",
    "jest-dom": "^3.0.0",
    "react": "^16.8.1",
    "react-dom": "^16.8.1",
    "react-testing-library": "^5.2.0",
    "rimraf": "^2.6.2",
    "ts-jest": "^24.0.0",
    "typescript": "^3.2.2",
    "webpack": "^4.20.2",
    "webpack-cli": "^3.1.2",
    "webpack-dev-server": "^3.1.9"
  },
  "dependencies": {
    "@babel/runtime": "^7.1.2",
    "invariant": "^2.2.4"
  },
  "peerDependencies": {
    "react": "^16.4.0"
  }
}
