-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 1.02 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "@bufferapp/bufflog",
"version": "0.5.9",
"description": "logger for all javascript and typescript Buffer services",
"main": "dist/bufflog.js",
"scripts": {
"start": "./node_modules/typescript/bin/tsc --pretty && node ./dist/index.js",
"build": "./node_modules/typescript/bin/tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bufferapp/js-bufflog.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/bufferapp/js-bufflog/issues"
},
"homepage": "https://github.com/bufferapp/js-bufflog#readme",
"devDependencies": {
"@types/express": "4.17.21",
"@types/node": "18.15.3",
"@types/pino": "^5.15.5",
"dd-trace": "5.24.0",
"express": "4.21.1",
"typescript": "4.9.5"
},
"dependencies": {
"pino": "^5.16.0",
"pino-http": "~5.0.0",
"redact-object": "3.0.1"
},
"types": "dist/bufflog.d.ts",
"prepublish": "./node_modules/typescript/bin/tsc"
}