{
  "name": "tinycrop",
  "version": "1.7.0",
  "description": "Lightweight pure JavaScript image crop",
  "main": "lib/index.js",
  "scripts": {
    "start": "BABEL_ENV=cjs NODE_ENV=production webpack --watch src/index.js dist/tinycrop.min.js",
    "test": "standard",
    "lint": "standard",
    "fix": "standard --fix",
    "build": "yarn cjs && yarn umd && yarn min && yarn react",
    "cjs": "BABEL_ENV=cjs babel src --out-dir lib",
    "umd": "BABEL_ENV=cjs NODE_ENV=development webpack src/index.js dist/tinycrop.js",
    "min": "BABEL_ENV=cjs NODE_ENV=production webpack src/index.js dist/tinycrop.min.js",
    "react": "webpack --config react-example/webpack.config.js react-example/index.jsx react-example/bundle.js"
  },
  "standard": {
    "ignore": [
      "/dist/",
      "/lib/"
    ]
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/WebSeed/tinycrop.git"
  },
  "keywords": [
    "crop",
    "resize",
    "selection",
    "image",
    "thumbnail",
    "react",
    "lightweight",
    "pure"
  ],
  "author": "Will Bamford",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/WebSeed/tinycrop/issues"
  },
  "homepage": "https://github.com/WebSeed/tinycrop",
  "devDependencies": {
    "babel-cli": "^6.14.0",
    "babel-core": "^6.18.2",
    "babel-loader": "^6.2.8",
    "babel-plugin-transform-es2015-modules-commonjs": "^6.18.0",
    "babel-preset-es2015": "^6.18.0",
    "babel-preset-react": "^6.16.0",
    "babel-preset-stage-3": "^6.16.0",
    "babel-register": "^6.18.0",
    "eslint": "^3.10.2",
    "eslint-config-standard-react": "^4.2.0",
    "eslint-plugin-react": "^6.7.1",
    "standard": "^8.5.0",
    "webpack": "^1.13.3"
  },
  "dependencies": {
    "normalize.css": "^5.0.0",
    "react": "^15.3.2",
    "react-dom": "^15.3.2",
    "tinytouch": "^1.5.1"
  }
}
