forked from cyamato/SyslogPro
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.75 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 2.75 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
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
98
99
100
{
"name": "@techteamer/syslog-pro",
"version": "0.3.1",
"description": "A Syslog client which options for UDP, TCP, and TLS transport and suport for both RFC-3164 and RFC-5424 including Structured Data.",
"keywords": [
"Syslog",
"RFC3164",
"RFC5424",
"LEEF",
"CEF",
"Securty",
"Logging",
"514",
"tcp",
"tls",
"Common Event Format",
"Log Event Extended Format"
],
"author": "TechTeamer",
"maintainers": [
{
"name": "Craig Yamato",
"email": "craig.yamato2@gmail.com",
"url": "http://linkedin.com/in/cyamato"
}
],
"contributors": [
{
"name": "Craig Yamato",
"email": "craig.yamato2@gmail.com",
"url": "http://linkedin.com/in/cyamato"
}
],
"homepage": "https://cyamato.github.io/SyslogPro/",
"bugs": {
"url": "https://github.com/cyamato/SyslogPro/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/TechTeamer/SyslogPro.git"
},
"directories": {
"doc": "./docs",
"example": "./example",
"test": "./test"
},
"main": "index.js",
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"moment": "^2.22.2"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"ajv": "^8.18.0",
"coveralls": "^3.0.2",
"docco": "^0.9.2",
"docdash": "^2.0.2",
"eslint": "^10.2.0",
"eslint-config-strongloop": "^2.1.0",
"jest": "^30.3.0",
"jsdoc": "^4.0.5",
"jsdoc-to-markdown": "^9.1.3",
"node-notifier": "^10.0.1"
},
"resolutions": {
"coveralls/request/tough-cookie": ">=4.1.3",
"coveralls/request/form-data": ">=2.5.4",
"coveralls/request/qs": ">=6.14.1",
"**/uuid": "^14.0.0"
},
"scripts": {
"pretest": "eslint .",
"test": "jest --colors --expand --logHeapUsage --runInBand && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"docs": "jsdoc *.js -c ./jsdoc.json; jsdoc2md --template ./jsdoc2md/api.hbs --files *.js > ./docs/api.md; docco --output ./docs/docco --layout plain-markdown *.js && mv ./docs/docco/index.html ./docs/docco/README.md; docco --output ./docs/docco *.js",
"jsdoc": "jsdoc *.js -c ./jsdoc.json",
"readme": "jsdoc2md --template ./jsdoc2md/api.hbs --files *.js > ./docs/api.md",
"docco": "docco --output ./docs/docco --layout plain-markdown *.js && mv ./docs/docco/index.html ./docs/docco/README.md; docco --output ./docs/docco *.js"
},
"jest": {
"collectCoverage": true,
"coverageReporters": [
"json",
"text",
"text-summary",
"lcov"
],
"globals": {
"udpServerPort": 8000,
"tcpServerPort": 8001,
"tlsBasicServerPort": 8002,
"tlsAuthServerPort": 8003
},
"notify": true,
"testEnvironment": "node",
"verbose": true
}
}