{
  "name": "simple-mapper",
  "version": "2.2.0",
  "description": "A convention-based mapping library for nodejs and the browser.",
  "keywords": [],
  "contributors": [],
  "homepage": "https://github.com/cdibbs/simple-mapper",
  "engines": {},
  "repository": {
    "type": "git",
    "url": "https://github.com/cdibbs/simple-mapper"
  },
  "author": {
    "name": "Chris Dibbern",
    "email": "chrisdibbern@gmail.com"
  },
  "bundle": "./dist/bundles/simple-mapper.es5.js",
  "main": "./dist/index",
  "types": "./dist/index.d.ts",
  "bugs": {
    "url": "https://github.com/cdibbs/simple-mapper/issues"
  },
  "license": "MIT",
  "scripts": {
    "pretest": "tsc --project tsconfig-test.json",
    "test": "alsatian --tap test/lib/*.spec.js",
    "cover": "nyc npm test",
    "compodoc": "compodoc -p tsconfig.json",
    "e2e": "",
    "build": "npm-run-all tsc webpack",
    "webpack": "webpack",
    "tsc": "tsc",
    "prepublishOnly": "npm run build",
    "report_coverage": "nyc report --reporter=lcov && codecov"
  },
  "typings": "./dist/index.d.ts",
  "private": false,
  "dependencies": {},
  "devDependencies": {
    "@compodoc/compodoc": "^1.1.2",
    "@types/node": "^10.0.3",
    "alsatian": "^2.2.1",
    "alsatian-fluent-assertions": "^1.0.0-alpha018",
    "codecov": "^3.0.0",
    "core-js": "^2.5.6",
    "cross-env": "^5.1.5",
    "npm-run-all": "^4.1.3",
    "nyc": "^12.0.1",
    "rxjs": "^5.5.10",
    "source-map-support": "^0.5.3",
    "tslint": "^5.10.0",
    "typescript": "^2.8.3",
    "webpack": "^4.0.0",
    "webpack-cli": "^3.0.0"
  },
  "nyc": {
    "include": [
      "test/lib/*.js",
      "test/lib/**/*.js"
    ],
    "extension": [
      ".js"
    ],
    "exclude": [
      "typings",
      "src/e2e/resources",
      "**/*.d.ts",
      "**/*.spec.ts",
      "**/*.spec.js",
      "**/i-*.js",
      "test/lib/i/index.js"
    ],
    "reporter": [
      "json",
      "html"
    ],
    "require": [
      "source-map-support/register"
    ]
  }
}
