-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
27 lines (27 loc) · 864 Bytes
/
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
{
"name": "elastic-butler",
"author": "Diogo Menezes <[email protected]>",
"version": "2.0.0",
"description": "Elastic butler is a open source alternative to Elastic Stack Alerting tool",
"main": "index.js",
"scripts": {
"start": "clear; node index.js",
"test": "nyc --reporter=html --reporter=lcov --reporter=text-lcov --reporter=text --report-dir=test/reports mocha -u bdd ./test/**/*.test.js --timeout 12000",
"integration": "echo \"Error: no test specified\""
},
"license": "GPLv3",
"dependencies": {
"elasticsearch": "^15.4.1",
"moment": "^2.24.0",
"moment-timezone": "^0.5.23",
"nodemailer": "^6.0.0",
"nodemailer-smtp-transport": "^2.7.4",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"twilio": "^3.29.2"
},
"devDependencies": {
"mocha": "^4.0.0",
"nyc": "^14.1.1"
}
}