2019-07-09 22:37:30 +02:00
|
|
|
{
|
|
|
|
"name": "bgpalerter",
|
2020-05-10 23:55:21 +02:00
|
|
|
"version": "1.25.0",
|
2019-07-09 22:37:30 +02:00
|
|
|
"description": "",
|
|
|
|
"main": "index.js",
|
|
|
|
"bin": "index.js",
|
2020-03-17 18:37:09 +01:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2020-05-26 14:50:16 +02:00
|
|
|
"url": "git+https://github.com/nttgin/BGPalerter.git"
|
2020-03-17 18:37:09 +01:00
|
|
|
},
|
2019-07-09 22:37:30 +02:00
|
|
|
"scripts": {
|
|
|
|
"babel": "./node_modules/.bin/babel",
|
2020-06-28 20:38:33 +02:00
|
|
|
"test": "rm -rf volumetests/ && ./node_modules/.bin/mocha --exit tests/*.js --require @babel/register && rm -rf volumetests/",
|
2020-07-06 02:01:01 +02:00
|
|
|
"test-reports": "./node_modules/.bin/mocha --exit tests/reports_tests/*.js --require @babel/register",
|
|
|
|
"test-proxy": "./node_modules/.bin/mocha --exit tests/proxy_tests/*.js --require @babel/register",
|
2020-07-18 18:43:30 +02:00
|
|
|
"test-rpki": "./node_modules/.bin/mocha --exit tests/rpki_tests/tests.default.js --require @babel/register && ./node_modules/.bin/mocha --exit tests/rpki_tests/tests.external.js --require @babel/register",
|
2019-07-09 23:08:31 +02:00
|
|
|
"build": "./build.sh",
|
2019-09-14 21:00:20 +02:00
|
|
|
"watch-and-serve": "nodemon -e yml,js,json,txt --inspect --exec babel-node index.js",
|
2019-09-18 01:56:22 +02:00
|
|
|
"serve": "babel-node index.js",
|
2019-12-29 11:16:33 +01:00
|
|
|
"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",
|
2019-09-15 20:40:51 +02:00
|
|
|
"generate-prefixes": "babel-node index.js generate"
|
2019-07-09 22:37:30 +02:00
|
|
|
},
|
|
|
|
"author": "Massimo Candela",
|
2020-05-18 19:08:39 +02:00
|
|
|
"license": "BSD-3-Clause",
|
2019-07-09 22:37:30 +02:00
|
|
|
"devDependencies": {
|
2020-07-18 18:43:30 +02:00
|
|
|
"@babel/cli": "^7.10.5",
|
|
|
|
"@babel/core": "^7.10.5",
|
|
|
|
"@babel/node": "^7.10.5",
|
2020-07-01 12:54:05 +02:00
|
|
|
"@babel/plugin-proposal-class-properties": "^7.10.4",
|
|
|
|
"@babel/plugin-proposal-object-rest-spread": "^7.10.4",
|
|
|
|
"@babel/preset-env": "^7.10.4",
|
2019-07-09 22:37:30 +02:00
|
|
|
"chai": "^4.2.0",
|
|
|
|
"chai-subset": "^1.6.0",
|
2020-06-11 09:01:24 +00:00
|
|
|
"mocha": "^8.0.1",
|
2020-05-15 08:59:10 +00:00
|
|
|
"nodemon": "^2.0.4",
|
2020-06-29 08:50:01 +00:00
|
|
|
"pkg": "^4.4.9",
|
2020-07-05 22:45:38 +02:00
|
|
|
"read-last-lines": "^1.7.2",
|
|
|
|
"syslogd": "^1.1.2"
|
2019-07-09 22:37:30 +02:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2020-07-18 18:43:30 +02:00
|
|
|
"@sentry/node": "^5.19.2",
|
2020-01-22 08:38:40 +00:00
|
|
|
"axios": "^0.19.2",
|
2019-09-14 21:00:20 +02:00
|
|
|
"batch-promises": "^0.0.3",
|
2020-06-23 16:09:10 +00:00
|
|
|
"brembo": "^2.0.4",
|
2020-05-26 14:50:16 +02:00
|
|
|
"https-proxy-agent": "^5.0.0",
|
2020-07-18 18:43:30 +02:00
|
|
|
"inquirer": "^7.3.2",
|
2020-04-02 08:38:44 +00:00
|
|
|
"ip-address": "^6.3.0",
|
2020-04-03 14:24:55 +00:00
|
|
|
"ip-sub": "^1.0.7",
|
2020-05-25 09:58:20 +00:00
|
|
|
"js-yaml": "^3.14.0",
|
2019-11-05 08:11:56 +00:00
|
|
|
"kafka-node": "^5.0.0",
|
2020-06-18 08:47:03 +00:00
|
|
|
"nodemailer": "^6.4.10",
|
2019-07-09 22:37:30 +02:00
|
|
|
"path": "^0.12.7",
|
2019-12-16 08:33:57 +00:00
|
|
|
"restify": "^8.5.1",
|
2020-07-18 18:43:30 +02:00
|
|
|
"rpki-validator": "^2.1.3",
|
2020-04-15 08:34:35 +00:00
|
|
|
"semver": "^7.3.2",
|
2019-12-11 01:41:26 +01:00
|
|
|
"syslog-client": "^1.1.1",
|
2020-07-05 22:45:38 +02:00
|
|
|
"ws": "^7.3.1",
|
2020-07-18 18:43:30 +02:00
|
|
|
"yargs": "^15.4.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",
|
2019-12-13 15:31:00 +01:00
|
|
|
"./src/connectors/*.js",
|
2020-01-18 19:05:56 +01:00
|
|
|
"./src/processMonitors/*.js"
|
2019-07-09 22:37:30 +02:00
|
|
|
],
|
|
|
|
"assets": [
|
|
|
|
"./bin/config.yml"
|
|
|
|
],
|
|
|
|
"targets": [
|
2020-01-21 01:38:10 +01:00
|
|
|
"node12"
|
2019-07-09 22:37:30 +02:00
|
|
|
]
|
2020-01-20 17:56:15 +01:00
|
|
|
},
|
|
|
|
"optionalDependencies": {
|
|
|
|
"bufferutil": "^4.0.1",
|
|
|
|
"utf-8-validate": "^5.0.2"
|
2019-07-09 22:37:30 +02:00
|
|
|
}
|
|
|
|
}
|