-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
47 lines (47 loc) · 1.12 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
{
"name": "pino-std-serializers",
"version": "7.0.0",
"description": "A collection of standard object serializers for Pino",
"main": "index.js",
"type": "commonjs",
"types": "index.d.ts",
"scripts": {
"lint": "standard | snazzy",
"lint-ci": "standard",
"test": "borp -p 'test/**/*.js'",
"test-ci": "borp --coverage -p 'test/**/*.js'",
"test-types": "tsc && tsd"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/pinojs/pino-std-serializers.git"
},
"keywords": [
"pino",
"logging"
],
"author": "James Sumners <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pinojs/pino-std-serializers/issues"
},
"homepage": "https://github.com/pinojs/pino-std-serializers#readme",
"precommit": [
"lint",
"test",
"test-types"
],
"devDependencies": {
"@matteo.collina/tspl": "^0.1.1",
"@types/node": "^22.0.0",
"borp": "^0.19.0",
"pre-commit": "^1.2.2",
"snazzy": "^9.0.0",
"standard": "^17.1.0",
"tsd": "^0.31.0",
"typescript": "~5.7.2"
},
"tsd": {
"directory": "test/types"
}
}