{
  "name": "@avine/ns-logger",
  "version": "1.0.5",
  "description": "Logger with namespace support for node and browser",
  "main": "index.js",
  "scripts": {
    "lint": "tslint --project tsconfig.json",
    "test:base": "mocha --require ts-node/register src/**/*.test.ts",
    "test": "nyc mocha",
    "build:node": "tsc",
    "build:browser": "node expose-global.js",
    "build": "npm run build:node && npm run build:browser",
    "all": "npm run lint && npm test && npm run build",
    "start": "http-server ./docs -a 127.0.0.1 -p 9000 -o -c-1",
    "deploy": "npm publish ./ --access=public"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/avine/ns-logger.git"
  },
  "keywords": [
    "log",
    "logger",
    "logging",
    "node",
    "browser",
    "module",
    "namespace",
    "typescript"
  ],
  "author": "Stéphane Francel <contact@avine.io>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/avine/ns-logger/issues"
  },
  "homepage": "https://github.com/avine/ns-logger#readme",
  "devDependencies": {
    "@types/chai": "^4.1.7",
    "@types/mocha": "^5.2.5",
    "@types/sinon": "^5.0.7",
    "@types/sinon-chai": "^3.2.1",
    "@types/uglify-es": "^3.0.0",
    "chai": "^4.2.0",
    "http-server": "^0.11.1",
    "mocha": "^5.2.0",
    "nyc": "^13.1.0",
    "sinon": "^7.2.2",
    "sinon-chai": "^3.3.0",
    "source-map-support": "^0.5.9",
    "ts-node": "^7.0.1",
    "tslint": "^5.11.0",
    "typescript": "^3.2.2",
    "uglify-es": "^3.3.9"
  },
  "nyc": {
    "include": [
      "src/**/*.ts"
    ],
    "exclude": [
      "src/**/*.test.ts"
    ],
    "extension": [
      ".ts"
    ],
    "reporter": [
      "text-summary",
      "html"
    ]
  },
  "dependencies": {
    "chalk": "^2.4.1"
  }
}
