-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
54 lines (54 loc) · 1.1 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
{
"name": "debugnyan",
"version": "4.1.1",
"description": "A logging library that combines the simplicity and convenience of debug with the power of bunyan",
"keywords": [
"bridge",
"bunyan",
"debug",
"debugging",
"json",
"log",
"logging"
],
"homepage": "https://github.com/uphold/debugnyan/",
"bugs": "https://github.com/uphold/debugnyan/issues",
"license": "MIT",
"author": {
"name": "Rui Marinho",
"email": "[email protected]",
"url": "https://github.com/ruimarinho"
},
"repository": {
"type": "git",
"url": "https://github.com/uphold/debugnyan.git"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "uphold-scripts lint .",
"release": "release-it",
"test": "uphold-scripts test"
},
"pre-commit": [
"lint"
],
"jest": {
"collectCoverageFrom": [
"index.js"
]
},
"dependencies": {
"bunyan": "^1.8.15",
"debug": "^4.3.4"
},
"devDependencies": {
"release-it": "^17.0.0",
"uphold-scripts": "^0.7.1"
},
"engines": {
"node": ">=18"
},
"types": "index.d.ts"
}