-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
executable file
·39 lines (39 loc) · 1.16 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
{
"name": "graylog-plugin-slack-notification",
"version": "5.1.2",
"description": "Send notifications to Slack",
"repository": {
"type": "git",
"url": "https://github.com/KongZ/graylog-plugin-slack-notification"
},
"scripts": {
"build": "webpack --bail",
"lint": "eslint -c .eslintrc src/**/*",
"test": "jest"
},
"keywords": [
"graylog"
],
"sideEffects": false,
"license": "Apache-2.0",
"dependencies": {
"buffer": "^6.0.3",
"lodash": "^4.17.21",
"prop-types": "^15.8.1"
},
"devDependencies": {
"@babel/core": "7.17.4",
"@babel/plugin-proposal-class-properties": "7.16.7",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "7.17.0",
"@babel/preset-env": "7.16.11",
"@babel/preset-react": "7.16.7",
"@testing-library/user-event": "^13.5.0",
"@types/styled-components": "^5.1.24",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-plugin-dynamic-import-node": "^2.3.0",
"babel-plugin-styled-components": "^2.0.2",
"graylog-web-plugin": "file:../graylog2-server/graylog2-web-interface/packages/graylog-web-plugin"
},
"private": true
}