{
  "name": "react-dragtastic",
  "version": "2.4.3",
  "description": "A simple drag and drop library for React which uses the more stable mouseDown mouseUp architecture instead of the problematic HTML5 drag and drop API.",
  "main": "build/index.js",
  "module": "build/index.es.js",
  "files": [
    "build"
  ],
  "scripts": {
    "build:flow": "cpy src/index.js.flow build",
    "typecheck:flow": "flow check --max-warnings=0",
    "pretest": "yarn build",
    "test": "jest",
    "posttest": "prettier --list-different \"**/*.js\" --ignore-path .gitignore",
    "start": "cross-env NODE_ENV=build rollup --config --watch",
    "build": "cross-env NODE_ENV=build rollup --config",
    "postbuild": "yarn build:flow",
    "precommit": "lint-staged"
  },
  "prettier": {
    "single-quote": true,
    "semi": false
  },
  "lint-staged": {
    "*.{js,md}": [
      "prettier --write",
      "git add"
    ]
  },
  "jest": {
    "globalSetup": "./src/jest-global-setup.js",
    "globalTeardown": "./src/jest-global-teardown.js",
    "testEnvironment": "./src/jest-puppeteer-environment.js"
  },
  "author": "@chrisjpatty",
  "repository": {
    "type": "git",
    "url": "https://github.com/chrisjpatty/react-dragtastic"
  },
  "license": "MIT",
  "peerDependencies": {
    "react": "^15.5.4 || ^16.0.0"
  },
  "dependencies": {
    "prop-types": "^15.6.0"
  },
  "devDependencies": {
    "babel-core": "^6.26.0",
    "babel-jest": "^22.1.0",
    "babel-plugin-external-helpers": "^6.22.0",
    "babel-plugin-transform-class-properties": "^6.24.1",
    "babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
    "babel-plugin-transform-object-rest-spread": "^6.23.0",
    "babel-plugin-transform-react-jsx": "^6.24.1",
    "babel-preset-env": "^1.5.1",
    "cpy-cli": "^1.0.1",
    "cross-env": "^5.1.3",
    "del": "^3.0.0",
    "flow-bin": "^0.66.0",
    "husky": "^0.14.3",
    "jest": "^22.1.4",
    "jest-environment-node": "^22.1.4",
    "lint-staged": "^6.1.0",
    "make-dir": "^1.1.0",
    "np": "^2.18.3",
    "prettier": "^1.10.2",
    "puppeteer": "^1.0.0",
    "react": "^16.2.0",
    "react-dom": "^16.2.0",
    "rollup": "^0.55.3",
    "rollup-plugin-babel": "^3.0.3",
    "rollup-watch": "^4.3.1"
  }
}
