logdna-bunyan
Version:
LogDNA's Node.js logging module with support for Bunyan
97 lines (96 loc) • 1.89 kB
JSON
{
"name": "logdna-bunyan",
"version": "2.0.3",
"description": "LogDNA's Node.js logging module with support for Bunyan",
"main": "index.js",
"files": [
"index.js",
"README.md",
"LICENSE"
],
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "tap",
"release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/logdna/logdna-bunyan.git"
},
"keywords": [
"logdna",
"logs",
"logging",
"bunyan",
"logdna.com",
"logger",
"node",
"nodejs"
],
"author": {
"name": "LogDNA Inc.",
"email": "help@logdna.com"
},
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/logdna/logdna-bunyan/issues"
},
"homepage": "https://github.com/logdna/logdna-bunyan#readme",
"dependencies": {
"@logdna/logger": "^2.2.4"
},
"devDependencies": {
"bunyan": "^1.8.14",
"eslint": "^7.20.0",
"eslint-config-logdna": "^4.0.2",
"nock": "^13.0.4",
"semantic-release": "^17.3.9",
"semantic-release-config-logdna": "^1.1.0",
"tap": "^14.10.8"
},
"eslintConfig": {
"extends": [
"logdna"
],
"root": true,
"ignorePatterns": [
"node_modules/",
"coverage/"
],
"parserOptions": {
"ecmaVersion": 2019
}
},
"tap": {
"100": true,
"esm": false,
"ts": false,
"jsx": false,
"check-coverage": true,
"browser": false,
"coverage-report": [
"text",
"text-summary",
"json-summary",
"json",
"html"
],
"reporter": "tap",
"nyc-arg": [
"--exclude=test/",
"--exclude=tools",
"--all"
],
"files": [
"test/**/*.js"
],
"output-file": ".tap-output"
},
"release": {
"branches": [
"main"
],
"extends": "semantic-release-config-logdna"
}
}