{
  "name": "@azure-iot/hal",
  "description": "Decorator library for HAL-based routes",
  "version": "2.0.0",
  "scripts": {
    "prebuild": "npm run lint",
    "build": "tsc",
    "pretest": "npm run build",
    "test": "nyc jasmine --config=jasmine.json",
    "lint": "tslint ./src/**/*.ts -e ./src/**/*.d.ts --fix",
    "prepublish": "npm run build"
  },
  "license": "SEE LICENSE IN ./license.txt",
  "devDependencies": {
    "@types/jasmine": "^2.5.51",
    "@types/mustache": "^0.8.29",
    "@types/node": "^7.0.29",
    "istanbul": "^0.4.5",
    "jasmine": "^2.6.0",
    "nyc": "^11.0.2",
    "tslint": "^5.4.3",
    "typescript": "^2.3.4"
  },
  "dependencies": {
    "@types/express": "^4.0.35",
    "express": "^4.15.3",
    "halson": "^2.3.1",
    "mustache": "^2.3.0",
    "path-to-regexp": "^1.7.0"
  },
  "nyc": {
    "extension": [
      ".ts"
    ],
    "all": true,
    "include": [
      "src/**/*"
    ],
    "exclude": [
      "dist/**/*.spec.js",
      "dist/**/*.d.ts"
    ],
    "reporter": [
      "text-summary"
    ]
  }
}
