-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.57 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
{
"name": "scaledsearch",
"version": "1.2.0",
"description": "The Search Engineer's Toolkit — migrate, audit, benchmark, monitor, and optimize Elasticsearch and OpenSearch",
"main": "dist/index.js",
"bin": {
"ss": "dist/index.js",
"scaledsearch": "dist/index.js"
},
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsup",
"start": "node dist/index.js",
"test": "vitest run test/unit",
"test:unit": "vitest run test/unit",
"test:integration": "vitest run test/integration",
"test:all": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"docker:up": "docker compose up -d --wait",
"docker:down": "docker compose down -v",
"prepublishOnly": "npm run test:unit && npm run build"
},
"keywords": [
"elasticsearch",
"opensearch",
"migration",
"schema",
"flyway",
"search",
"cli",
"devtools"
],
"author": "Said Bouigherdaine <saidbouigherdaine@gmail.com>",
"license": "MIT",
"files": [
"dist",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/saidbouig/scaledsearch.git"
},
"homepage": "https://scaledsearch.com",
"type": "commonjs",
"dependencies": {
"@elastic/elasticsearch": "^9.3.4",
"commander": "^14.0.3",
"yaml": "^2.8.4"
},
"devDependencies": {
"@types/node": "^25.6.0",
"@vitest/coverage-v8": "^4.1.6",
"chalk": "^5.6.2",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^6.0.3",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=18"
}
}