forked from trentm/node-bunyan
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 931 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 931 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
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "@yolean/bunyan",
"version": "2.1.4",
"description": "a JSON logging library for node.js services",
"author": "Trent Mick <trentm@gmail.com> (http://trentm.com)",
"main": "./lib/bunyan.js",
"types": "./index.d.ts",
"bin": {
"bunyan": "./bin/bunyan"
},
"repository": {
"type": "git",
"url": "git://github.com/yolean/bunyan.git"
},
"engines": {
"node": ">=18.16.0"
},
"keywords": [
"log",
"logging",
"log4j",
"json",
"bunyan"
],
"license": "MIT",
"files": [
"index.d.ts",
"bin",
"lib"
],
"dependencies": {
"exeunt": "1.1.2"
},
"devDependencies": {
"ben": "0.0.0",
"markdown-toc": "0.12.x",
"moment": "2.29.4",
"tap": "16.3.8",
"vasync": "2.2.1",
"verror": "1.10.1"
},
"scripts": {
"check": "make check",
"test": "tap test/*.test.js --statements=53 --branches=55 --functions=47 --lines=53"
}
}