mirror of
https://github.com/misskey-dev/SyslogPro.git
synced 2025-08-04 23:23:56 +09:00
73 lines
1.7 KiB
JSON
73 lines
1.7 KiB
JSON
{
|
|
"name": "SyslogPro",
|
|
"version": "0.1.0",
|
|
"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"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/cyamato/SyslogPro.git"
|
|
},
|
|
"author": {
|
|
"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"
|
|
}
|
|
],
|
|
"license": "MIT",
|
|
"main": "index.js",
|
|
"engines": {
|
|
"node": ">=10.0.0"
|
|
},
|
|
"dependencies": {
|
|
"moment": "^2.22.2"
|
|
},
|
|
"devDependencies": {
|
|
"coveralls": "^3.0.2",
|
|
"docco": "^0.8.0",
|
|
"docdash": "^1.0.0",
|
|
"jest": "^23.5.0",
|
|
"jsdoc": "^3.5.5"
|
|
},
|
|
"scripts": {
|
|
"test": "jest --colors --expand --logHeapUsage --runInBand && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
|
|
"doc": "jsdoc *.js --destination ./docs --private --readme ./readme.md --template ./node_modules/docdash"
|
|
},
|
|
"jest": {
|
|
"collectCoverage": true,
|
|
"coverageReporters": [
|
|
"json",
|
|
"text",
|
|
"text-summary",
|
|
"lcov"
|
|
],
|
|
"globals": {
|
|
"udpServerPort": 8000,
|
|
"tcpServerPort": 8001,
|
|
"tlsBasicServerPort": 8002,
|
|
"tlsAuthServerPort": 8003
|
|
},
|
|
"notify": true,
|
|
"testEnvironment": "node",
|
|
"verbose": true
|
|
}
|
|
}
|