-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.71 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.71 KB
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
{
"name": "@johnsusek/elastalert-server",
"version": "20260324",
"description": "A server that runs ElastAlert and exposes REST API's for manipulating rules and alerts.",
"license": "MIT",
"main": "index.js",
"author": {
"name": "John Susek",
"url": "https://github.com/johnsusek",
"email": "john@johnsolo.net"
},
"repository": {
"type": "git",
"url": "git+https://github.com/johnsusek/elastalert-server.git"
},
"directories": {
"lib": "./lib",
"test": "./test"
},
"dependencies": {
"@babel/cli": "^7.28.6",
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.2",
"@babel/register": "^7.28.6",
"@opensearch-project/opensearch": "^3.5.1",
"axios": "^1.13.6",
"bunyan": "^1.8.15",
"cors": "^2.8.6",
"cpu-stat": "^2.0.1",
"es5": "npm:@elastic/elasticsearch@^5.6.22",
"es6": "npm:@elastic/elasticsearch@^6.8.8",
"es7": "npm:@elastic/elasticsearch@^7.17.14",
"es8": "npm:@elastic/elasticsearch@^8.18.2",
"es9": "npm:@elastic/elasticsearch@^9.3.4",
"express": "^5.2.1",
"fs-extra": "^11.3.4",
"joi": "^18.0.2",
"js-yaml": "^4.1.1",
"lodash": "^4.17.23",
"mkdirp": "^3.0.1",
"object-resolve-path": "^1.1.1",
"randomstring": "^1.3.1",
"readdirp": "^5.0.0",
"recursive-readdir": "^2.2.3",
"ws": "^8.20.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^9.39.2",
"eslint": "^9.39.2",
"globals": "^17.4.0"
},
"scripts": {
"build": "babel src -d lib",
"start": "sh ./scripts/start.sh",
"update-authors": "./scripts/update-authors.sh",
"lint": "./node_modules/eslint/bin/eslint.js .",
"lint:fix": "./node_modules/eslint/bin/eslint.js --fix ."
}
}