-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
51 lines (51 loc) · 1.15 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
{
"name": "@opensearch-project/reporting-cli",
"description": "Opensearch Reporting CLI to download and email OpenSearch Dashboards reports.",
"main": "./src/index.js",
"homepage": "https://www.opensearch.org/",
"version": "1.1.0",
"keywords": [
"opensearch",
"reporting",
"reports",
"cli",
"opensearchDashboards"
],
"author": "opensearch-project",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/opensearch-project/reporting-cli.git"
},
"bugs": {
"url": "https://github.com/opensearch-project/reporting-cli/issues"
},
"scripts": {
"test": "jest"
},
"dependencies": {
"aws-sdk": "^2.1237.0",
"commander": "^9.4.0",
"dompurify": "^2.1.1",
"dotenv": "^16.0.3",
"jsdom": "^20.0.0",
"lodash": "^4.17.21",
"nodemailer": "^6.8.0",
"nodemailer-express-handlebars": "^5.0.0",
"ora": "^5.4.1",
"puppeteer": "^18.2.0"
},
"bin": {
"opensearch-reporting-cli": "./src/cli.js"
},
"devDependencies": {
"jest": "^29.3.1"
},
"resolutions": {
"xml2js": "^0.5.0"
},
"engines": {
"node": ">=12",
"yarn": "^1.21.1"
}
}