1
0
mirror of https://github.com/nttgin/BGPalerter.git synced 2024-05-19 06:50:08 +00:00
Files
nttgin-BGPalerter/package.json

73 lines
2.0 KiB
JSON
Raw Normal View History

2019-07-09 22:37:30 +02:00
{
"name": "bgpalerter",
2020-03-12 20:36:58 +01:00
"version": "1.24.0",
2019-07-09 22:37:30 +02:00
"description": "",
"main": "index.js",
"bin": "index.js",
"scripts": {
"babel": "./node_modules/.bin/babel",
"test": "./node_modules/.bin/mocha --exit tests --require @babel/register",
2019-07-09 23:08:31 +02:00
"build": "./build.sh",
"watch-and-serve": "nodemon -e yml,js,json,txt --inspect --exec babel-node index.js",
"serve": "babel-node index.js",
"inspect": "node --inspect --require @babel/register index.js",
2019-09-19 12:48:50 +02:00
"update": "git update-index --assume-unchanged config.yml && git update-index --assume-unchanged prefixes.yml && git pull",
"generate-prefixes": "babel-node index.js generate"
2019-07-09 22:37:30 +02:00
},
"author": "Massimo Candela",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.7",
"@babel/node": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/preset-env": "^7.8.7",
2019-07-09 22:37:30 +02:00
"chai": "^4.2.0",
"chai-subset": "^1.6.0",
"mocha": "^7.1.0",
"pkg": "^4.4.4",
2020-03-12 17:16:51 +01:00
"nodemon": "^2.0.1",
"read-last-lines": "^1.7.2"
2019-07-09 22:37:30 +02:00
},
"dependencies": {
"@sentry/node": "^5.14.2",
"axios": "^0.19.2",
"batch-promises": "^0.0.3",
2019-07-09 22:37:30 +02:00
"brembo": "^2.0.3",
"inquirer": "^7.1.0",
"ip-address": "^6.2.0",
2020-01-24 15:14:17 +01:00
"ip-sub": "^1.0.5",
2019-07-09 22:37:30 +02:00
"js-yaml": "^3.13.1",
"kafka-node": "^5.0.0",
"minimist": "^1.2.5",
"nodemailer": "^6.4.5",
2019-07-09 22:37:30 +02:00
"path": "^0.12.7",
"restify": "^8.5.1",
2020-01-24 15:14:17 +01:00
"rpki-validator": "^1.0.12",
"semver": "^7.1.3",
2019-12-11 01:41:26 +01:00
"syslog-client": "^1.1.1",
"ws": "^7.2.3",
"yargs": "^15.3.1"
2019-07-09 22:37:30 +02:00
},
"pkg": {
"scripts": [
2019-11-27 02:04:21 +01:00
"./src/inputs/*.js",
"./src/monitors/*.js",
"./src/reports/*.js",
"./src/connectors/*.js",
"./src/processMonitors/*.js"
2019-07-09 22:37:30 +02:00
],
"assets": [
"./bin/config.yml"
],
"targets": [
"node12"
2019-07-09 22:37:30 +02:00
]
},
"optionalDependencies": {
"bufferutil": "^4.0.1",
"utf-8-validate": "^5.0.2"
2019-07-09 22:37:30 +02:00
}
}