generated from fastify/skeleton
-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
44 lines (44 loc) · 996 Bytes
/
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
{
"name": "@fastify/one-line-logger",
"version": "1.2.0",
"description": "A simple formatter for fastify's logs",
"main": "index.js",
"type": "commonjs",
"types": "types/index.d.ts",
"directories": {
"doc": "docs",
"example": "examples",
"test": "test"
},
"dependencies": {
"pino-pretty": "^10.0.0"
},
"devDependencies": {
"benchmark": "^2.1.4",
"fastify": "^4.3.0",
"snazzy": "^9.0.0",
"standard": "^17.0.0",
"tap": "^16.3.0",
"tsd": "^0.30.0"
},
"scripts": {
"lint": "standard | snazzy",
"lint:fix": "standard --fix",
"test": "npm run test:unit && npm run test:typescript",
"test:typescript": "tsd",
"test:unit": "tap",
"test:watch": "tap --watch --no-coverage-report"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fastify/one-line-logger.git"
},
"keywords": [
"fastify",
"logger",
"pino",
"pino-pretty",
"one-line-logger"
],
"license": "MIT"
}