This repository has been archived by the owner on Jul 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
63 lines (63 loc) · 1.53 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
{
"name": "winston-splunk-httplogger",
"version": "0.0.0-development",
"description": "A Winston compatible transport for logging to a Splunk HTTP Event Collector",
"homepage": "https://github.com/adrianhall/winston-splunk-httplogger",
"main": "index.js",
"scripts": {
"pretest": "eslint index.js",
"test": "mocha",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/adrianhall/winston-splunk-httplogger.git"
},
"engines": {
"node": ">=12.0"
},
"keywords": [
"splunk",
"winston",
"tools",
"logging"
],
"author": {
"name": "Adrian Hall",
"email": "[email protected]"
},
"license": "MIT",
"tonicExampleFilename": "example/server.js",
"devDependencies": {
"@semantic-release/commit-analyzer": "^10.0.0",
"@semantic-release/github": "^9.0.3",
"@semantic-release/npm": "^10.0.2",
"@semantic-release/release-notes-generator": "^11.0.1",
"chai": "^4.3.1",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"mocha": "^10.0.0",
"semantic-release": "^21.0.1",
"winston": "^3.1.0"
},
"dependencies": {
"splunk-logging": "^0.11.1"
},
"peerDependencies": {
"winston": ">= 3.0.0"
},
"engine": {
"node": ">= 12.22.0"
},
"files": [
"index.js",
"CHANGELOG.md",
"README.md",
"LICENSE",
"package.json",
"package-lock.json"
]
}