{
  "name": "pollock",
  "version": "0.2.1",
  "description": "Simple lightweight library for adding abstract methods to types",
  "homepage": "https://github.com/neocotic/pollock",
  "bugs": {
    "url": "https://github.com/neocotic/pollock/issues"
  },
  "author": {
    "name": "Alasdair Mercer",
    "email": "mercer.alasdair@gmail.com",
    "url": "https://neocotic.com"
  },
  "license": "MIT",
  "keywords": [
    "abstract",
    "method"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/neocotic/pollock.git"
  },
  "devDependencies": {
    "codecov": "^3.1.0",
    "eslint": "^5.9.0",
    "eslint-config-notninja": "^0.4.0",
    "mocha": "^5.2.0",
    "npm-run-all": "^4.1.3",
    "nyc": "^13.1.0",
    "rimraf": "^2.6.2",
    "rollup": "^0.67.3",
    "rollup-plugin-commonjs": "^9.2.0",
    "rollup-plugin-node-resolve": "^3.4.0",
    "rollup-plugin-uglify": "^6.0.0"
  },
  "main": "index.js",
  "browser": "dist/pollock.js",
  "scripts": {
    "build": "npm-run-all lint compile test",
    "clean": "npm-run-all clean:*",
    "clean:coverage": "rimraf coverage",
    "clean:dist": "rimraf dist",
    "compile": "npm run clean:dist && rollup --config",
    "coverage": "nyc report && codecov",
    "lint": "npm-run-all lint:*",
    "lint:src": "eslint \"src/**/*.js\"",
    "lint:test": "eslint \"test/**/*.js\"",
    "test": "npm run clean:coverage && nyc mocha -R list \"test/**/*.spec.js\"",
    "posttest": "nyc check-coverage"
  }
}
