{
  "name": "functional-augments-object",
  "version": "0.1.1",
  "description": "Augment the Object prototype with methods for functional programming, including filter(), map() and reduce().",
  "main": "index.js",
  "scripts": {
    "test": "npm run test:cover && npm run test:check-coverage",
    "test:unit": "mocha --reporter spec test.js",
    "test:cover": "istanbul cover _mocha -- --reporter spec test.js",
    "test:check-coverage": "istanbul check-coverage --statement 100 --branch 100 --function 100 --line 100"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/daniel-ac-martin/functional-augments-object.git"
  },
  "keywords": [
    "augment",
    "augmentation",
    "Object",
    "filter",
    "map",
    "reduce",
    "Object.filter",
    "Object.map",
    "Object.reduce"
  ],
  "author": "Daniel A.C. Martin <npm@daniel-martin.co.uk> (http://daniel-martin.co.uk/)",
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/daniel-ac-martin/functional-augments-object/issues"
  },
  "homepage": "https://github.com/daniel-ac-martin/functional-augments-object#readme",
  "engines": {
    "node" : ">=4.0.0"
  },
  "devDependencies": {
    "chai": "^4.1.2",
    "istanbul": "^0.4.5",
    "mocha": "^4.1.0"
  }
}
