1
0
mirror of https://github.com/nttgin/BGPalerter.git synced 2024-05-19 06:50:08 +00:00
Files
nttgin-BGPalerter/package.json
dependabot-preview[bot] a771b5d2d1 Bump ws from 7.2.2 to 7.2.3
Bumps [ws](https://github.com/websockets/ws) from 7.2.2 to 7.2.3.
- [Release notes](https://github.com/websockets/ws/releases)
- [Commits](https://github.com/websockets/ws/compare/7.2.2...7.2.3)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-03-10 08:16:21 +00:00

72 lines
1.9 KiB
JSON

{
"name": "bgpalerter",
"version": "1.23.2",
"description": "",
"main": "index.js",
"bin": "index.js",
"scripts": {
"babel": "./node_modules/.bin/babel",
"test": "./node_modules/.bin/mocha --exit tests --require @babel/register",
"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",
"update": "git update-index --assume-unchanged config.yml && git update-index --assume-unchanged prefixes.yml && git pull",
"generate-prefixes": "babel-node index.js generate"
},
"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",
"chai": "^4.2.0",
"chai-subset": "^1.6.0",
"mocha": "^7.1.0",
"pkg": "^4.4.4",
"nodemon": "^2.0.1",
"read-last-lines": "^1.7.2"
},
"dependencies": {
"@sentry/node": "^5.13.2",
"axios": "^0.19.2",
"batch-promises": "^0.0.3",
"brembo": "^2.0.3",
"inquirer": "^7.0.6",
"ip-address": "^6.2.0",
"ip-sub": "^1.0.5",
"js-yaml": "^3.13.1",
"kafka-node": "^5.0.0",
"nodemailer": "^6.4.4",
"path": "^0.12.7",
"restify": "^8.5.1",
"rpki-validator": "^1.0.12",
"semver": "^7.1.3",
"syslog-client": "^1.1.1",
"ws": "^7.2.3",
"yargs": "^15.3.0"
},
"pkg": {
"scripts": [
"./src/inputs/*.js",
"./src/monitors/*.js",
"./src/reports/*.js",
"./src/connectors/*.js",
"./src/processMonitors/*.js"
],
"assets": [
"./bin/config.yml"
],
"targets": [
"node12"
]
},
"optionalDependencies": {
"bufferutil": "^4.0.1",
"utf-8-validate": "^5.0.2"
}
}