{
  "name": "@george.marcus/react-inline-suggest",
  "version": "1.0.2",
  "description": "A simple inline autosuggest input",
  "author": {
    "name": "Maciej Kański",
    "email": "xmazu@yahoo.com"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/xmazu/react-inline-suggest"
  },
  "bugs": {
    "url": "https://github.com/xmazu/react-inline-suggest/issues"
  },
  "homepage": "https://xmazu.github.io/react-inline-suggest/",
  "keywords": [
    "react",
    "autocomplete",
    "suggestions",
    "inline",
    "react-inline-suggest"
  ],
  "license": "MIT",
  "scripts": {
    "start": "webpack-dev-server --config scripts/webpack.dev.config --profile",
    "clean": "rimraf lib && rimraf dist",
    "build": "npm run build:lib && webpack --config scripts/webpack.prod.config.js",
    "build:lib": "rimraf lib && tsc",
    "prebuild": "rimraf dist && mkdir dist",
    "prepublish": "npm run build",
    "test": "jest",
    "storybook": "start-storybook -p 6006",
    "gh-pages:clean": "rimraf .gh-pages",
    "gh-pages:build": "build-storybook -o .gh-pages",
    "gh-pages:publish": "git-directory-deploy --directory .gh-pages",
    "gh-pages": "npm run gh-pages:clean && npm run gh-pages:build && npm run gh-pages:publish"
  },
  "main": "lib/index.js",
  "devDependencies": {
    "@storybook/addon-actions": "^3.2.0",
    "@storybook/react": "^3.2.5",
    "@types/enzyme": "^2.8.6",
    "@types/jest": "^20.0.7",
    "@types/react": "^16.0.2",
    "@types/react-dom": "^15.5.3",
    "@types/sinon": "^2.3.3",
    "@types/storybook__addon-actions": "^3.0.1",
    "@types/storybook__react": "^3.0.5",
    "chalk": "^2.1.0",
    "css-loader": "^0.28.5",
    "enzyme": "^2.9.1",
    "extract-text-webpack-plugin": "^3.0.0",
    "fork-ts-checker-webpack-plugin": "^0.2.7",
    "git-directory-deploy": "^1.5.1",
    "html-webpack-plugin": "^2.30.1",
    "jest": "^20.0.4",
    "node-sass": "^4.11.0",
    "react": "^15.6.1",
    "react-addons-test-utils": "^15.6.0",
    "react-dom": "^15.6.1",
    "react-hot-loader": "^1.3.1",
    "react-test-renderer": "^15.6.1",
    "rimraf": "^2.6.1",
    "sass-loader": "^6.0.6",
    "sinon": "^3.2.1",
    "source-map-loader": "^0.2.1",
    "style-loader": "^0.18.2",
    "ts-jest": "^20.0.10",
    "ts-loader": "^2.3.3",
    "typescript": "^2.4.2",
    "webpack": "^3.5.5",
    "webpack-dev-server": "^2.7.1"
  },
  "peerDependencies": {
    "react": "^15.3.0",
    "react-dom": "^15.3.0"
  },
  "files": [
    "lib",
    "LICENSE",
    "dist"
  ],
  "types": "./lib/index.d.ts",
  "jest": {
    "transform": {
      ".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
    },
    "testPathIgnorePatterns": [
      "/node_modules/",
      "/lib/"
    ],
    "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
    "moduleFileExtensions": [
      "ts",
      "tsx",
      "js",
      "json"
    ]
  }
}
