serilogger
Version:
A structured logging framework for JavaScript, inspired by Serilog.
66 lines (65 loc) • 1.76 kB
JSON
{
"name": "serilogger",
"version": "0.5.1",
"description": "A structured logging framework for JavaScript, inspired by Serilog.",
"main": "dist/serilogger.js",
"jsnext:main": "dist/serilogger.es6.js",
"module": "dist/serilogger.es6.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"test-watch": "jest --watch",
"test-coverage": "jest --coverage --coverageReporters=text-lcov | coveralls",
"package": "rimraf .rpt2_cache && rollup -c --bundleConfigAsCjs",
"pack_publish": "del /f /q /s dist && npm run package && npm publish"
},
"files": [
"dist/"
],
"jest": {
"transform": {
".tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
],
"testEnvironment": "node"
},
"repository": {
"type": "git",
"url": "https://github.com/davisb10/serilogger.git"
},
"keywords": [
"serilog",
"logging",
"structured-logging"
],
"author": "davisb10",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/davisb10/serilogger/issues"
},
"homepage": "https://github.com/davisb10/serilogger#readme",
"devDependencies": {
"@types/chai": "^4.2.15",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.32",
"chai": "^4.3.3",
"coveralls": "^3.1.0",
"jest": "^26.6.3",
"rimraf": "^4.1.2",
"rollup": "^3.12.1",
"rollup-plugin-strip-code": "^0.2.7",
"rollup-plugin-typescript2": "^0.34.1",
"ts-jest": "^26.5.3",
"ts-node": "^9.1.1",
"tslib": "^2.1.0",
"typemoq": "^2.1.0",
"typescript": "^4.2.3"
}
}