-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #333 from byu-oit/patch/deps
v0.4.0
- Loading branch information
Showing
8 changed files
with
107 additions
and
96 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ on: | |
- .github/workflows/bump.yml | ||
|
||
env: | ||
node_version: "16.x" | ||
node_version: "18.x" | ||
|
||
jobs: | ||
env: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,45 +1,51 @@ | ||
{ | ||
"name": "@byu-oit/logger", | ||
"version": "0.3.14", | ||
"version": "0.4.0", | ||
"description": "Default configuration for pino logger", | ||
"contributors": [ | ||
"Scott Hutchings <[email protected]>" | ||
{ | ||
"name": "Scott Hutching", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Spencer Tuft", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"main": "dist/logger.js", | ||
"types": "dist/logger.d.ts", | ||
"files": [ | ||
"dist/**/*" | ||
"dist" | ||
], | ||
"scripts": { | ||
"build": "rimraf dist && tsc", | ||
"build": "npx rimraf dist && tsc", | ||
"coverage": "npm run test -- --coverage || exit 0", | ||
"lint": "ts-standard | snazzy", | ||
"lint:fix": "ts-standard --fix | snazzy", | ||
"lint": "npx ts-standard | snazzy", | ||
"lint:fix": "npx ts-standard --fix | snazzy", | ||
"test": "jest", | ||
"prepublishOnly": "npm run build" | ||
}, | ||
"author": "Brigham Young University - Office of Information Technology", | ||
"license": "Apache-2.0", | ||
"dependencies": { | ||
"deepmerge": "^4.2.2", | ||
"pino": "^6.13.3" | ||
"pino": "^8.11.0", | ||
"pino-http": "^6.6.0" | ||
}, | ||
"devDependencies": { | ||
"@tsconfig/node12": "^1.0.9", | ||
"@types/jest": "^27.0.1", | ||
"@tsconfig/node12": "^1.0.11", | ||
"@types/jest": "^29.5.0", | ||
"@types/node": "^16.9.1", | ||
"@types/pino": "^6.3.12", | ||
"jest": "^27.2.0", | ||
"@types/pino": "^7.0.5", | ||
"jest": "^29.5.0", | ||
"lint-staged": "^12.0.2", | ||
"pino-pretty": "^6.0.0", | ||
"rimraf": "^3.0.2", | ||
"pino-pretty": "^10.0.0", | ||
"snazzy": "^9.0.0", | ||
"ts-jest": "^27.0.5", | ||
"ts-standard": "^11.0.0", | ||
"typescript": "^4.4.3" | ||
"ts-jest": "^29.1.0", | ||
"typescript": "^5.0.3" | ||
}, | ||
"optionalDependencies": { | ||
"pino-pretty": "<6" | ||
"pino-pretty": ">=7" | ||
}, | ||
"engines": { | ||
"node": ">=12" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters