-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 959 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 959 Bytes
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
{
"name": "@bufferapp/bufflog",
"version": "0.0.6",
"description": "logger for all javascript and typescript Buffer services",
"main": "dist/bufflog.js",
"scripts": {
"start": "./node_modules/typescript/bin/tsc && node ./dist/index.js",
"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.2",
"express": "^4.17.1",
"typescript": "^3.8.2"
},
"dependencies": {
"@types/pino": "^5.15.5",
"@types/pino-http": "^4.4.0",
"dd-trace": "^0.18.0",
"pino": "^5.16.0",
"pino-http": "^5.0.0"
},
"types": "dist/bufflog.d.ts",
"prepublish": "./node_modules/typescript/bin/tsc"
}