visualise-elastic-profile
Version:
Visualise results from Profile API of ElasticSearch on the command line
78 lines (77 loc) • 1.82 kB
JSON
{
"name": "visualise-elastic-profile",
"description": "Visualise results from Profile API of ElasticSearch on the command line",
"version": "1.2.2",
"main": "build/index.js",
"types": "build/index.d.ts",
"license": "MIT",
"author": {
"name": "Henri Normak",
"email": "henri.normak@gmail.com"
},
"engines": {
"node": ">=14"
},
"homepage": "https://github.com/henrinormak/visualise-elastic-profile",
"bugs": {
"url": "https://github.com/henrinormak/visualise-elastic-profile/issues"
},
"keywords": [
"elastic",
"elasticsearch",
"profile",
"visualise"
],
"repository": {
"type": "git",
"url": "https://github.com/henrinormak/visualise-elastic-profile.git"
},
"scripts": {
"clean": "yarn rimraf build",
"build": "tsc",
"cli": "yarn build && node ./build/cli.js",
"test": "yarn jest",
"release": "yarn clean && yarn build && yarn test && standard-version",
"publish-release": "git push --follow-tags origin main && npm publish"
},
"files": [
"build/*"
],
"bin": {
"visualise-elastic-profile": "build/cli.js"
},
"dependencies": {
"chalk": "^4.0.0",
"clime": "^0.5.14",
"runtypes": "^6.5.0",
"strip-ansi": "^6.0.1"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/node": "^14",
"jest": "^27.4.7",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"standard-version": "^9.3.2",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
},
"jest": {
"moduleFileExtensions": [
"js",
"ts",
"json"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testPathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/build/"
],
"testMatch": [
"**/__tests__/*.(js|ts)"
],
"testEnvironment": "node"
}
}