bunyamin
Version:
Bunyan-based logger for Node.js supporting Trace Event format
105 lines (104 loc) • 2.63 kB
JSON
{
"name": "bunyamin",
"version": "1.6.3",
"description": "Bunyan-based logger for Node.js supporting Trace Event format",
"license": "MIT",
"keywords": [
"bunyan",
"logger",
"log",
"trace",
"trace-event",
"perfetto",
"perfetto-ui"
],
"authors": [
"Yaroslav Serhieiev <yaroslavs@wix.com>"
],
"repository": {
"url": "github:wix-incubator/bunyamin"
},
"engines": {
"node": ">=14.18.2"
},
"type": "commonjs",
"main": "./dist/index.umd.js",
"umd:main": "./dist/index.umd.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"source": "src/index.ts",
"exports": {
"types": "./dist/index.d.ts",
"require": "./dist/index.umd.js",
"import": "./dist/index.mjs",
"default": "./dist/index.umd.js"
},
"files": [
"src",
"dist",
"!**/__mocks__",
"!**/__tests__",
"!**/__utils__",
"!**/*.test.*"
],
"scripts": {
"prepare": "husky install",
"clean": "git clean -xdf",
"build": "microbundle src/index.ts --target node --format esm,umd",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:staged": "lint-staged",
"test": "jest"
},
"devDependencies": {
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@types/bunyan": "^1.8.8",
"@types/stream-json": "^1.7.7",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"bunyan": "^1.8.15",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-ecmascript-compat": "^3.2.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.2.3",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-n": "^17.2.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-unicorn": "^52.0.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"microbundle": "^0.15.1",
"prettier": "^3.2.5",
"semantic-release": "^23.0.8",
"tempy": "^1.0.0",
"ts-jest": "^29.1.0",
"typedoc": "^0.25.13",
"typescript": "5.2.x"
},
"dependencies": {
"@flatten-js/interval-tree": "^1.1.2",
"multi-sort-stream": "^1.0.4",
"stream-json": "^1.7.5",
"trace-event-lib": "^1.3.1"
},
"peerDependencies": {
"@types/bunyan": "^1.8.8",
"bunyan": "^1.8.15 || ^2.0.0"
},
"peerDependenciesMeta": {
"bunyan": {
"optional": true
},
"@types/bunyan": {
"optional": true
}
},
"browserslist": [
"node 14"
]
}