-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
62 lines (62 loc) · 1.38 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
55
56
57
58
59
60
61
62
{
"name": "abslog",
"version": "2.4.4",
"description": "An abstract logger - Enables adding logging to modules without adding a dependency to a full log library. ",
"main": "lib/log.js",
"types": "types/log.d.ts",
"files": [
"lib",
"types"
],
"scripts": {
"prepublish": "npm run types",
"test": "tap test/*.js --disable-coverage",
"types": "tsc",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"repository": {
"type": "git",
"url": "git@github.com:trygve-lie/abslog.git"
},
"keywords": [
"loggerinterface",
"loggerabstraction",
"winston",
"bunyan",
"pino",
"log4js",
"roarr",
"logdna",
"synclog",
"logging",
"logger",
"log"
],
"author": "Trygve Lie",
"license": "MIT",
"bugs": {
"url": "https://github.com/trygve-lie/abslog/issues"
},
"homepage": "https://github.com/trygve-lie/abslog#readme",
"devDependencies": {
"tap": "21.0.1",
"eslint": "8.57.1",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-prettier": "5.2.1",
"prettier": "3.4.2",
"winston": "3.17.0",
"log4js": "6.9.1",
"bunyan": "1.8.15",
"pino": "9.6.0",
"roarr": "4.2.5",
"logdna": "3.5.3",
"synclog": "1.0.1",
"typescript": "5.7.2"
},
"dependencies": {
"nooplog": "1.0.2"
}
}