SyslogPro/package.json
2018-09-25 18:23:58 +00:00

93 lines
2.5 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"
],
"author": {
"name": "Craig Yamato",
"email": "craig.yamato2@gmail.com",
"url": "http://linkedin.com/in/cyamato"
},
"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/cyamato/SyslogPro.git"
},
"directories": {
"doc": "./docs",
"example": "./example",
"test": "./test"
},
"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",
"jsdoc-to-markdown": "^4.0.1"
},
"scripts": {
"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
}
}