forked from nttgin/BGPalerter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.79 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "bgpalerter",
"version": "1.22.0",
"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",
"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.7.5",
"@babel/core": "^7.7.5",
"@babel/node": "^7.7.4",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-object-rest-spread": "^7.7.4",
"@babel/preset-env": "^7.7.6",
"chai": "^4.2.0",
"chai-subset": "^1.6.0",
"mocha": "^6.2.2",
"nodemon": "^2.0.1",
"read-last-lines": "^1.7.1"
},
"dependencies": {
"axios": "^0.19.0",
"babel-upgrade": "^1.0.1",
"batch-promises": "^0.0.3",
"brembo": "^2.0.3",
"event-stream": "^4.0.1",
"ip-address": "^6.1.0",
"js-yaml": "^3.13.1",
"kafka-node": "^5.0.0",
"nodemailer": "^6.4.1",
"path": "^0.12.7",
"pkg": "^4.4.1",
"pubsub-js": "^1.7.0",
"restify": "^8.5.0",
"syslog-client": "^1.1.1",
"websocket-stream": "^5.5.0",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^4.3.1",
"ws": "^7.2.0",
"yargs": "^15.0.2"
},
"pkg": {
"scripts": [
"./src/inputs/*.js",
"./src/monitors/*.js",
"./src/reports/*.js",
"./src/connectors/*.js"
],
"assets": [
"./bin/config.yml"
],
"targets": [
"node10"
]
}
}