{
  "name": "@azure/logger-js",
  "version": "1.3.2",
  "description": "Simple logger for JavaScript projects",
  "main": "dist/lib/logger.js",
  "types": "./dist/lib/logger.d.ts",
  "scripts": {
    "build": "run-p tslint build:tsc",
    "build:tsc": "tsc -p tsconfig.json",
    "build-test": "npm run build && npm test",
    "check:everything": "ts-node ./.scripts/checkEverything.ts",
    "coverage": "nyc mocha",
    "prepack": "npm install && npm run build",
    "test": "mocha",
    "tslint": "tslint -p . -c tslint.json"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Azure/logger-js.git"
  },
  "files": [
    "dist/lib/**/*.js",
    "dist/lib/**/*.js.map",
    "dist/lib/**/*.d.ts",
    "lib/**/*.ts",
    "LICENSE",
    "README.md"
  ],
  "keywords": [
    "azure",
    "logger"
  ],
  "author": "Microsoft Corporation",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/Azure/logger-js/issues"
  },
  "homepage": "https://github.com/Azure/logger-js#readme",
  "devDependencies": {
    "@ts-common/azure-js-dev-tools": "^19.4.0",
    "@types/chai": "^4.1.7",
    "@types/mocha": "^5.2.6",
    "chai": "^4.2.0",
    "mocha": "^6.0.2",
    "mocha-junit-reporter": "^1.18.0",
    "mocha-multi-reporters": "^1.1.7",
    "npm-run-all": "^4.1.5",
    "nyc": "^14.1.1",
    "pre-commit": "^1.2.2",
    "ts-node": "^8.1.0",
    "tslint": "^5.16.0",
    "typescript": "^3.4.5"
  },
  "pre-commit": [
    "check:everything"
  ],
  "nyc": {
    "extension": [
      ".ts"
    ],
    "exclude": [
      "coverage/**/*",
      "**/*.d.ts",
      "**/*.js"
    ],
    "reporter": [
      "text",
      "html",
      "cobertura"
    ],
    "all": true
  },
  "dependencies": {
    "tslib": "^1.9.3"
  }
}
