SyslogPro/package.json
syuilo 2772b33fa1 ✌️
2022-12-06 12:30:23 +09:00

108 lines
2.9 KiB
JSON

{
"name": "@zeit/syslog-pro",
"version": "0.2.9-misskey.2",
"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/zeit/SyslogPro.git"
},
"directories": {
"doc": "./docs",
"example": "./example",
"test": "./test"
},
"files": [
"index.d.ts",
"index.js"
],
"main": "index.js",
"types": "index.d.ts",
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"moment": "^2.22.2"
},
"devDependencies": {
"@types/node": "12.7.11",
"@typescript-eslint/eslint-plugin": "2.3.3",
"@typescript-eslint/parser": "2.3.3",
"ajv": "^6.5.4",
"coveralls": "^3.0.2",
"docco": "^0.8.0",
"docdash": "^1.0.0",
"eslint": "^5.6.1",
"eslint-config-strongloop": "^2.1.0",
"jest": "^23.5.0",
"jsdoc": "^3.5.5",
"jsdoc-to-markdown": "^4.0.1",
"typescript": "3.6.3"
},
"scripts": {
"build": "tsc",
"pretest": "eslint '*.ts' && npm run build",
"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",
"prepublishOnly": "npm run build"
},
"jest": {
"collectCoverage": true,
"coverageReporters": [
"json",
"text",
"text-summary",
"lcov"
],
"globals": {
"udpServerPort": 8000,
"tcpServerPort": 8001,
"tlsBasicServerPort": 8002,
"tlsAuthServerPort": 8003
},
"notify": true,
"testEnvironment": "node",
"verbose": true
}
}