forked from pinojs/pino-debug
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.53 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
{
"name": "pino-debug",
"version": "2.0.0",
"description": "High performance debug logging",
"main": "index.js",
"scripts": {
"test": "dependency-check --no-dev . && cross-env NODE_ENV=test tap test/*.js",
"test-2.3": "npm i [email protected] && npm run test",
"test-2.4": "npm i [email protected] && npm run test",
"test-2.5": "npm i [email protected] && npm run test",
"test-2.6": "npm i [email protected] && npm run test",
"test-3.1": "npm i [email protected] && npm run test",
"test-4.1": "npm i [email protected] && npm run test",
"test:cov": "standard && npm run deps && cross-env NODE_ENV=test tap --cov test/*.js",
"ci": "npm test -- --coverage-report=lcov",
"test:cov:html": "standard && npm run deps && cross-env NODE_ENV=test tap --coverage-report=html test",
"bench": "node benchmarks/runbench all",
"bench-basic": "node benchmarks/runbench basic",
"bench-object": "node benchmarks/runbench object",
"bench-deepobject": "node benchmarks/runbench deepobject"
},
"repository": "pinojs/pino-debug",
"keywords": [
"pino",
"debug",
"fast",
"performance",
"debugging",
"logging",
"logger"
],
"license": "MIT",
"dependencies": {
"pino": "^6.0.2"
},
"peerDependencies": {
"debug": ">=2"
},
"devDependencies": {
"cross-env": "^7.0.3",
"dependency-check": "^4.0.0",
"fastbench": "^1.0.1",
"flush-write-stream": "^2.0.0",
"pump": "^3.0.0",
"split2": "^4.0.0",
"standard": "^16.0.0",
"steed": "^1.1.3",
"tap": "^14.0.0",
"through2": "^4.0.0"
}
}