{
  "name": "loopback-next",
  "repository": {
    "type": "git",
    "url": "https://github.com/strongloop/loopback-next.git"
  },
  "version": "4.0.0-alpha.1",
  "engines": {
    "node": ">=6"
  },
  "license": "MIT",
  "devDependencies": {
    "@types/mocha": "^2.2.39",
    "@types/node": "^7.0.31",
    "@types/request": "^0.0.43",
    "@types/request-promise": "^4.1.33",
    "coveralls": "^2.13.1",
    "lerna": "^2.0.0-rc.4",
    "mocha": "^3.2.0",
    "nyc": "^11.0.1",
    "request": "^2.79.0",
    "request-promise": "^4.1.1",
    "ts-node": "^3.0.6",
    "tslint": "^5.4.3",
    "typescript": "^2.2.1"
  },
  "scripts": {
    "bootstrap": "lerna bootstrap",
    "coverage:ci": "nyc report --reporter=text-lcov | coveralls",
    "precoverage": "npm test",
    "coverage": "open coverage/index.html",
    "lint": "tslint -c tslint.full.json --project tsconfig.json --type-check",
    "lint:fix": "npm run lint -- --fix",
    "clean": "lerna run --loglevel=silent clean",
    "build": "lerna run --loglevel=silent build",
    "pretest": "npm run build",
    "test": "nyc mocha --opts test/mocha.opts \"packages/*/test/**/*.ts\"",
    "posttest": "npm run lint"
  },
  "nyc": {
    "include": [
      "packages/example-codehub/src/**",
      "packages/*/lib*/*"
    ],
    "exclude": [
      "packages/core/*/promisify.*"
    ],
    "extension": [
      ".js",
      ".ts"
    ],
    "reporter": [
      "html",
      "text"
    ]
  }
}
