-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
59 lines (59 loc) · 1.67 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
58
59
{
"name": "@johnsusek/elastalert-server",
"version": "20241227",
"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.26.4",
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/register": "^7.25.9",
"@opensearch-project/opensearch": "^2.13.0",
"axios": "^1.7.9",
"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.17.0",
"express": "^4.21.2",
"fs-extra": "^11.2.0",
"joi": "^17.13.3",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"mkdirp": "^3.0.1",
"object-resolve-path": "^1.1.1",
"randomstring": "^1.3.0",
"readdirp": "^4.0.2",
"recursive-readdir": "^2.2.3",
"ws": "^8.18.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"eslint": "^9.17.0",
"globals": "^15.14.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 ."
}
}