-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.5 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.5 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
{
"name": "elasticsearch-dsl-js",
"version": "0.0.0",
"private": true,
"description": "Elasticsearch DSL libraries for JavaScript/TypeScript",
"repository": {
"type": "git",
"url": "git+https://github.com/elastic/elasticsearch-dsl-js.git"
},
"author": "Elastic",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/elastic/elasticsearch-dsl-js/issues"
},
"homepage": "https://github.com/elastic/elasticsearch-dsl-js#readme",
"packageManager": "[email protected]",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "turbo run build",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"test:coverage": "turbo run test:coverage",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"typecheck": "turbo run typecheck",
"clean": "turbo run clean && rimraf node_modules",
"ci": "turbo run lint typecheck test build",
"check-spdx": "node scripts/check-spdx.js",
"license-checker": "pnpm -r exec license-checker --production --onlyAllow 'MIT;Apache-2.0;Apache1.1;ISC;BSD-3-Clause;BSD-2-Clause;0BSD'",
"format": "biome format --write .",
"prepare": "turbo run build"
},
"devDependencies": {
"@biomejs/biome": "2.4.12",
"@elastic/elasticsearch": "9.3.4",
"@types/node": "24.12.2",
"@vitest/coverage-v8": "4.1.5",
"@vitest/ui": "4.1.5",
"license-checker": "25.0.1",
"rimraf": "6.1.3",
"tsup": "8.5.1",
"turbo": "2.9.6",
"typescript": "5.9.3",
"vitest": "4.1.5"
}
}