-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.75 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.75 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "es-cli-tool",
"version": "1.0.7",
"description": "A way to query your elasticsearch using CLI",
"private": "true",
"main": "only-the-path-in-bin-matters-in-cli.js",
"keywords": ["elasticsearch", "CLI"],
"bin": {
"es-cli-tool": "index.js"
},
"exports": {
".": {
"import": {
"default": "./only-the-path-in-bin-matters-in-cli.js"
},
"require": {
"default": "./only-the-path-in-bin-matters-in-cli.js"
}
}
},
"scripts": {
"clean": "rm -rf dist",
"lint": "eslint -c ./.eslintrc.json \"./src/**/*.ts\"",
"format-check": "prettier . --check",
"format-fix": "prettier . --write",
"test": "node --test",
"tsc": "tsc -p tsconfig.json",
"build": "export NODE_ENV=production && node build.config.mjs",
"build:dev": "export NODE_ENV=development && node build.config.mjs",
"dev": "node dist/index.js",
"dev-create-context": "node dist/index.js create-context",
"dev-use-context": "node dist/index.js use-context",
"dev-current-context": "node dist/index.js current-context",
"dev-create-index": "node dist/index.js create-index",
"dev-delete-index": "node dist/index.js delete-index",
"dev-clear-all": "node dist/index.js clear-all",
"dev-import": "node dist/index.js import",
"dev-add": "node dist/index.js add",
"dev-update": "node dist/index.js update",
"dev-hard-update": "node dist/index.js hard-update",
"dev-delete": "node dist/index.js delete",
"dev-get": "node dist/index.js get",
"dev-get-mapping": "node dist/index.js get-mapping",
"dev-get-settings": "node dist/index.js get-settings",
"dev-update-mapping": "node dist/index.js update-mapping",
"dev-export": "node dist/index.js export",
"dev-index-list": "node dist/index.js index-list",
"install-as-cli": "npm install -g ./dist"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "restricted"
},
"repository": {
"type": "git",
"url": "git+https://github.com/talkohavy/es-cli-tool.git"
},
"bugs": {
"url": "https://github.com/talkohavy/es-cli-tool/issues",
"email": "talkohavy@gmail.com"
},
"author": "Tal Kohavy <talkohavy@gmail.com> (https://github.com/talkohavy)",
"license": "MIT",
"dependencies": {
"@inquirer/prompts": "^5.3.8",
"external-editor": "^3.1.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@eslint/js": "^9.34.0",
"@types/node": "^22.3.0",
"@types/yargs": "^17.0.33",
"esbuild": "^0.24.0",
"eslint": "^9.34.0",
"eslint-plugin-perfectionist": "^4.15.0",
"eslint-plugin-react-compiler": "19.1.0-rc.2",
"globals": "^16.3.0",
"husky": "^9.0.11",
"prettier": "^3.2.5",
"typescript": "^5.9.2",
"typescript-eslint": "^8.40.0"
}
}