forked from pinojs/pino
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.3 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "pino",
"version": "4.2.3",
"description": "super fast, all natural json logger",
"main": "pino.js",
"browser": "./browser.js",
"bin": {
"pino": "./bin.js"
},
"files": [
"pino.js",
"bin.js",
"browser.js",
"pretty.js",
"usage.txt",
"test",
"docs",
"example.js",
"lib"
],
"scripts": {
"browser-test": "zuul tape test/browser.test.js --local",
"test": "standard | snazzy && tap --no-cov test/*test.js",
"ci": "standard | snazzy && tap --cov test/*test.js",
"bench-all": "node benchmarks/runbench all",
"bench-basic": "node benchmarks/runbench basic",
"bench-object": "node benchmarks/runbench object",
"bench-deepobject": "node benchmarks/runbench deepobject",
"bench-multiarg": "node benchmarks/runbench multiarg",
"bench-longstring": "node benchmarks/runbench longstring",
"bench-child": "node benchmarks/runbench child",
"bench-grandchild": "node benchmarks/runbench grandchild",
"bench-conception": "node benchmarks/runbench conception"
},
"precommit": "test",
"repository": {
"type": "git",
"url": "git+https://github.com/pinojs/pino.git"
},
"keywords": [
"fast",
"logger",
"stream",
"json"
],
"author": "Matteo Collina <hello@matteocollina.com>",
"contributors": [
"David Mark Clements <huperekchuno@googlemail.com>",
"James Sumners <james.sumners@gmail.com>",
"Thomas Watson Steen <w@tson.dk> (https://twitter.com/wa7son)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/pinojs/pino/issues"
},
"homepage": "https://github.com/pinojs/pino#readme",
"devDependencies": {
"benchmark": "^2.1.2",
"bole": "^3.0.2",
"bunyan": "^1.8.5",
"debug": "^2.5.1",
"fastbench": "^1.0.0",
"flush-write-stream": "^1.0.2",
"fresh-require": "^1.0.3",
"log": "^1.4.0",
"loglevel": "^1.4.0",
"pre-commit": "^1.2.2",
"snazzy": "^6.0.0",
"standard": "^9.0.0",
"steed": "^1.1.3",
"tap": "^10.0.0",
"tape": "^4.6.2",
"through2": "^2.0.1",
"winston": "^2.3.0",
"zuul": "^3.11.1"
},
"dependencies": {
"chalk": "^1.1.1",
"fast-json-parse": "^1.0.0",
"fast-safe-stringify": "^1.1.11",
"flatstr": "^1.0.4",
"pump": "^1.0.2",
"quick-format-unescaped": "^1.0.0",
"split2": "^2.0.1"
}
}