-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.09 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.09 KB
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": "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": "ruipmarinho@gmail.com",
"url": "https://github.com/ruimarinho"
},
"repository": {
"type": "git",
"url": "https://github.com/uphold/debugnyan.git"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "eslint",
"release": "release-it",
"test": "node --test test/index.test.js"
},
"pre-commit": [
"lint"
],
"dependencies": {
"bunyan": "^1.8.15",
"debug": "^4.4.0"
},
"devDependencies": {
"eslint": "~9.23.0",
"eslint-config-uphold": "^6.4.1",
"prettier": "^3.5.3",
"release-it": "^19.0.1"
},
"engines": {
"node": ">=18"
},
"types": "index.d.ts"
}