{
  "name": "autobindr",
  "version": "1.0.6",
  "description": "Small utility function to automatically bind class methods to instances",
  "main": "dist/autobindr.js",
  "scripts": {
    "lint": "eslint ./src",
    "test": "cross-env NODE_ENV=test mocha --require babel-register ./test/src.js",
    "test:watch": "npm test -- --watch",
    "test:build": "npm test -- ./test/dist.js",
    "test:cov": "nyc npm test",
    "build:umd": "cross-env NODE_ENV=production rollup -c",
    "build:min": "uglifyjs dist/autobindr.js -c -m > ./dist/autobindr.min.js",
    "build": "npm-run-all build:umd build:min test:build",
    "coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
    "precommit": "npm-run-all lint test"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/husa/autobindr.git"
  },
  "keywords": [
    "autobind",
    "class",
    "methods",
    "react"
  ],
  "author": "Yuriy Husnay",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/husa/autobindr/issues"
  },
  "homepage": "https://github.com/husa/autobindr#readme",
  "devDependencies": {
    "@eleks/eslint-config-eleks": "^0.2.1",
    "babel-core": "^6.24.1",
    "babel-plugin-external-helpers": "^6.22.0",
    "babel-preset-es2015": "^6.24.1",
    "codecov": "^2.1.0",
    "cross-env": "^4.0.0",
    "eslint": "^3.19.0",
    "husky": "^0.13.3",
    "mocha": "^3.2.0",
    "npm-run-all": "^4.0.2",
    "nyc": "^10.2.0",
    "rollup": "^0.41.6",
    "rollup-plugin-babel": "^2.7.1",
    "uglify-js": "^2.8.22"
  }
}
