{
  "name": "deep-map",
  "version": "2.0.0",
  "description": "Transforms nested values of complex objects",
  "main": "./lib/index.js",
  "types": "./lib/index.d.ts",
  "scripts": {
    "clean": "rimraf lib",
    "build": "npm run clean && tsc -p tsconfig.build.json",
    "test:lint": "tslint \"src/**/*.ts\"",
    "test:unit": "istanbul cover -e .ts -x \"*.test.ts\" _mocha -- --opts mocha.opts",
    "test:report": "npm test && open coverage/lcov-report/index.html",
    "test": "npm run test:lint && npm run test:unit",
    "coveralls": "cat coverage/lcov.info | coveralls"
  },
  "engines": {
    "node": ">=6"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/mcmath/deep-map.git"
  },
  "keywords": [
    "map",
    "deep",
    "recursive",
    "nested",
    "object",
    "array",
    "circular",
    "json",
    "primitive",
    "typescript",
    "typings"
  ],
  "author": "Akim McMath <akim@mcmath.io> (http://www.mcmath.io/)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/mcmath/deep-map/issues"
  },
  "homepage": "https://github.com/mcmath/deep-map#readme",
  "devDependencies": {
    "@types/chai": "^4.1.7",
    "@types/es6-weak-map": "^1.2.0",
    "@types/lodash": "^4.14.120",
    "@types/mocha": "^5.2.5",
    "@types/sinon": "^7.0.5",
    "@types/sinon-chai": "^3.2.2",
    "chai": "^4.2.0",
    "coveralls": "^3.0.2",
    "es6-weak-map": "^2.0.2",
    "istanbul": "1.1.0-alpha.1",
    "mocha": "^5.2.0",
    "rimraf": "^2.6.1",
    "sinon": "^7.2.3",
    "sinon-chai": "^3.3.0",
    "ts-node": "^8.0.2",
    "tslint": "^5.1.0",
    "typescript": "^3.2.4"
  },
  "dependencies": {
    "lodash": "^4.17.11",
    "tslib": "^1.6.0"
  }
}
