-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
46 lines (46 loc) · 1.41 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
{
"name": "@aws/opensearch-perftop",
"version": "1.0.0",
"description": "PerfTop CLI tool for Open Distro Performance Analyzer",
"author": "Amazon Web Services",
"bin": {
"opensearch-perf-top": "./bin/global.js"
},
"preferGlobal": "true",
"scripts": {
"build-linux": "./node_modules/.bin/pkg . --targets linux --output ./build/opensearch-perf-top-linux",
"build-macos": "./node_modules/.bin/pkg . --targets macos --output ./build/opensearch-perf-top-macos",
"clean": "rm -rf ./build 2>/dev/null || true && rm -rf ./node_modules",
"lint": "./node_modules/.bin/eslint lib/opensearch-perf-top/ lib/bin.js bin/global.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/opensearch-project/perftop"
},
"license": "Apache-2.0",
"dependencies": {
"argparse": "1.0.10",
"blessed": "0.1.54",
"blessed-contrib": "^4.11.0",
"console-stamp": "3.0.2",
"hosted-git-info": "2.8.9",
"lodash": "4.17.21",
"merge": "2.1.1",
"pkg": "^4.4.9"
},
"pkg": {
"assets": "node_modules/blessed/**/*"
},
"devDependencies": {
"eslint": "^7.0.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0"
},
"engines": {
"node": ">=10.0.0 <11.0.0"
}
}