{
  "name": "typescript-logging",
  "version": "0.6.4",
  "description": "Library for logging, written in typescript, can be used by normal es5+ javascript as well.",
  "main": "dist/commonjs/typescript-logging",
  "scripts": {
    "test": "tsc -p tsconfig-test.json && jasmine-node --verbose ./dist-test/spec",
    "testLoadBundle": "webpack --config webpack.config.bundle.node.js && node spec/testLoadUseBundle.js",
    "tslint": "tslint -c tslint.json -p tsconfig.json  && tslint -c tslint.json -p tsconfig-test.json",
    "build": "tsc && npm run tslint && webpack --config webpack.config.bundle.js && webpack --config webpack.config.bundle-min.js",
    "docs": "typedoc --tsconfig tsconfig-docs.json --excludeNotExported --excludePrivate --mode modules --out dist/bundle/docs/api src/logging/typescript-logging.ts && github-markdown docs/latest_log4j.md --flavor gfm --title 'TypeScript log4j logging documentation' > dist/bundle/docs/index_log4j.html && github-markdown docs/latest_categorized.md --flavor gfm --title 'TypeScript logging categorized documentation' > dist/bundle/docs/index_categorized.html && node scripts/process-docs.js dist/bundle",
    "release": "npm run build && npm run test && npm run tslint && npm run testLoadBundle && npm run docs"
  },
  "files": [
    "dist/",
    "docs/",
    "img/",
    "src/",
    "LICENSE",
    "README.md"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/mreuvers/typescript-logging.git"
  },
  "keywords": [
    "typescript-logging",
    "logging",
    "javascript-logging",
    "log",
    "logger"
  ],
  "author": "Martijn Reuvers <martijnr.work@gmail.com> (http://www.javalid.org)",
  "license": "Apache-2.0",
  "bugs": {
    "url": "https://github.com/mreuvers/typescript-logging/issues"
  },
  "homepage": "https://github.com/mreuvers/typescript-logging#readme",
  "devDependencies": {
    "@types/jasmine-node": "1.14.32",
    "@types/stacktrace-js": "0.0.30",
    "archiver": "2.1.0",
    "jasmine": "2.8.0",
    "jasmine-node": "1.14.5",
    "markdown-to-html": "0.0.13",
    "shelljs": "0.7.8",
    "source-map-loader": "0.2.3",
    "ts-loader": "3.1.1",
    "tslint": "5.8.0",
    "typedoc": "0.9.0",
    "typescript": "2.4.2",
    "webpack": "2.7.0"
  },
  "typings": "./dist/commonjs/typescript-logging.d.ts",
  "dependencies": {
    "stacktrace-js": "1.3.1"
  }
}
