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

62 lines
1.5 KiB
JSON
Raw Normal View History

2019-07-09 22:37:30 +02:00
{
"name": "bgpalerter",
"version": "1.0.0",
"description": "",
"main": "index.js",
"bin": "index.js",
"scripts": {
"babel": "./node_modules/.bin/babel",
2019-07-09 23:08:31 +02:00
"test": "./node_modules/.bin/mocha tests --require @babel/register",
"build": "./build.sh",
2019-07-09 22:37:30 +02:00
"watch-and-serve": "nodemon --inspect --exec babel-node index.js",
"serve": "nodemon --exec babel-node index.js",
"generate-prefixes": "babel-node generatePrefixesList.js"
2019-07-09 22:37:30 +02:00
},
"author": "Massimo Candela",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/node": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"chai": "^4.2.0",
"chai-subset": "^1.6.0",
"mocha": "^6.1.4",
"nodemon": "^1.19.1",
"read-last-lines": "^1.7.1"
},
"dependencies": {
"axios": "^0.19.0",
2019-07-09 22:37:30 +02:00
"babel-upgrade": "^1.0.1",
"brembo": "^2.0.3",
"event-stream": "^4.0.1",
"js-yaml": "^3.13.1",
"nodemailer": "^6.2.1",
"path": "^0.12.7",
2019-07-10 18:08:25 +02:00
"pkg": "^4.4.0",
2019-07-09 22:37:30 +02:00
"pubsub-js": "^1.7.0",
2019-07-10 18:08:25 +02:00
"resnap": "^1.0.1",
2019-07-09 22:37:30 +02:00
"websocket-stream": "^5.5.0",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^3.9.0",
"ws": "^7.0.0",
2019-07-10 18:08:25 +02:00
"yarn": "^1.16.0"
2019-07-09 22:37:30 +02:00
},
"pkg": {
"scripts": [
"./inputs/*.js",
"./monitors/*.js",
"./reports/*.js",
"./connectors/*.js"
],
"assets": [
"./bin/config.yml"
],
"targets": [
"node10"
]
}
}