This repository has been archived by the owner on May 3, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
56 lines (56 loc) · 1.47 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
{
"name": "logzio-slack-integration",
"version": "1.0.0",
"description": "Logz.io integration with Slack",
"main": "src/index.js",
"scripts": {
"start": "node .",
"test:local": "node jasmine.js",
"test": "docker-compose down;docker-compose up --exit-code-from logzbot-test db logzbot-test",
"lint": "eslint \"src/**/*.js\" --quiet",
"format": "prettier --write \"src/**/*.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/logzio/slack-integration.git"
},
"keywords": [
"Logz.io",
"slack",
"bot",
"alerting",
"logging",
"elk"
],
"author": "Logz.io",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/logzio/slack-integration/issues"
},
"homepage": "https://github.com/logzio/slack-integration#readme",
"dependencies": {
"axios": "^0.18.1",
"botkit": "^0.7.6",
"db-migrate": "^0.11.6",
"db-migrate-mysql": "^1.1.10",
"easy-table": "^1.1.1",
"hoek": "^5.0.4",
"lodash": "^4.17.14",
"moment": "^2.24.0",
"mysql": "^2.17.1",
"sql-template-strings": "^2.2.2",
"winston": "^3.2.1",
"winston-logzio": "^4.0.2"
},
"devDependencies": {
"botkit-mock": "^0.1.11",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-prettier": "^3.1.0",
"find-free-port": "^1.2.0",
"jasmine": "^3.4.0",
"jasmine-http-server-spy": "^0.5.0",
"jasmine-spec-reporter": "^4.2.1",
"prettier": "^1.18.2"
}
}