-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.22 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": "@uphold/debino",
"version": "0.3.0",
"description": "A logging library that combines the simplicity and convenience of debug with the power of pino",
"main": "./src/index.js",
"types": "./types/index.d.ts",
"files": [
"src",
"types"
],
"scripts": {
"release": "release-it",
"lint": "eslint .",
"test": "vitest --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/uphold/debino"
},
"keywords": [
"pino",
"debug"
],
"author": "Uphold",
"license": "MIT",
"homepage": "https://github.com/uphold/debino#readme",
"bugs": {
"url": "https://github.com/uphold/debino/issues"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"pino": ">= 9.0.0"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@vitest/coverage-v8": "^2.1.8",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-sort-destructure-keys": "^2.0.0",
"eslint-plugin-sort-imports-requires": "^2.0.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"globals": "^15.14.0",
"pino": "^9.0.0",
"prettier": "^3.4.2",
"release-it": "^17.10.0",
"vitest": "^2.1.8"
}
}