-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
57 lines (57 loc) · 1.62 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
{
"name": "@johnsusek/elastalert-server",
"version": "20240104",
"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": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/johnsusek/elastalert-server.git"
},
"directories": {
"lib": "./lib",
"test": "./test"
},
"dependencies": {
"@babel/cli": "^7.25.7",
"@babel/core": "^7.25.7",
"@babel/preset-env": "^7.25.7",
"@babel/register": "^7.25.7",
"@opensearch-project/opensearch": "^2.12.0",
"axios": "^1.7.7",
"bunyan": "^1.8.15",
"cors": "^2.8.5",
"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.13",
"es8": "npm:@elastic/elasticsearch@^8.15.0",
"express": "^4.21.0",
"fs-extra": "^11.2.0",
"joi": "^17.13.3",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"mkdirp": "^3.0.1",
"npm-check-updates": "^17.1.3",
"object-resolve-path": "^1.1.1",
"randomstring": "^1.3.0",
"readdirp": "^3.6.0",
"recursive-readdir": "^2.2.3",
"ws": "^8.18.0"
},
"devDependencies": {
"eslint": "^8.57.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 ."
}
}