-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
97 lines (97 loc) · 1.9 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "logdna-winston",
"version": "4.0.1",
"description": "LogDNA's Node.js logging module with support for Winston",
"main": "index.js",
"files": [
"index.js",
"README.md",
"LICENSE"
],
"scripts": {
"lint": "eslint .",
"test": "tools/test.sh",
"release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/logdna/logdna-winston.git"
},
"keywords": [
"logdna",
"logs",
"logging",
"winston",
"logdna.com",
"logger",
"node",
"nodejs"
],
"author": {
"name": "LogDNA Inc.",
"email": "[email protected]"
},
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/logdna/logdna-winston/issues"
},
"homepage": "https://github.com/logdna/logdna-winston#readme",
"dependencies": {
"@logdna/logger": "^2.4.0",
"winston-transport": "^4.4.0"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-logdna": "^5.1.0",
"nock": "^13.0.4",
"semantic-release": "^17.4.7",
"semantic-release-config-logdna": "^1.3.0",
"tap": "^14.10.8",
"tap-xunit": "^2.4.1",
"winston": "^3.3.3"
},
"eslintConfig": {
"extends": [
"logdna"
],
"root": true,
"ignorePatterns": [
"node_modules/",
"coverage/"
],
"parserOptions": {
"ecmaVersion": 2019
}
},
"tap": {
"100": true,
"esm": false,
"ts": false,
"jsx": false,
"check-coverage": true,
"browser": false,
"coverage-report": [
"text",
"text-summary",
"json-summary",
"json",
"html"
],
"reporter": "tap",
"nyc-arg": [
"--exclude=test/",
"--exclude=tools",
"--all"
],
"files": [
"test/**/*.js"
],
"output-file": "coverage/.tap-output"
},
"release": {
"branches": [
"main"
],
"extends": "semantic-release-config-logdna"
}
}