-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
94 lines (94 loc) · 2.88 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
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
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@elastic/elasticsearch-serverless",
"version": "0.7.0+20231031",
"description": "The official Node.js Elastic client for the Elasticsearch Serverless service.",
"main": "./index.js",
"types": "index.d.ts",
"exports": {
"require": "./index.js"
},
"scripts": {
"lint": "ts-standard src",
"lint:fix": "ts-standard --fix src",
"license-checker": "license-checker --production --onlyAllow='MIT;Apache-2.0;Apache1.1;ISC;BSD-3-Clause;BSD-2-Clause;0BSD'",
"prebuild": "npm run clean-build && npm run lint",
"build": "tsc && rm lib/package.json && mv lib/src/* lib/ && rm -rf lib/src",
"clean-build": "rimraf ./lib && mkdir lib",
"prepublishOnly": "npm run build",
"test": "npm run build && npm run lint && tap test/unit/{*,**/*}.test.ts",
"test:coverage-100": "npm run build && tap test/unit/{*,**/*}.test.ts --coverage --100",
"test:coverage-report": "npm run build && tap test/unit/{*,**/*}.test.ts --coverage && nyc report --reporter=text-lcov > coverage.lcov",
"test:coverage-ui": "npm run build && tap test/unit/{*,**/*}.test.ts --coverage --coverage-report=html",
"test:integration": "npm run build && node ./test/integration/index.js",
"test:unit": "npm run build && tap test/unit/{*,**/*}.test.ts",
"test:unit-bun": "bun run build && bunx tap"
},
"keywords": [
"elasticsearch",
"elastic",
"kibana",
"mapping",
"REST",
"search",
"client",
"index",
"serverless"
],
"contributors": [
{
"name": "Elastic Client Library Maintainers",
"company": "Elastic BV"
}
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/elastic/elasticsearch-serverless-js.git"
},
"bugs": {
"url": "https://github.com/elastic/elasticsearch-serverless-js/issues"
},
"homepage": "https://github.com/elastic/elasticsearch-serverless-js",
"engines": {
"node": ">=18"
},
"devDependencies": {
"@sinonjs/fake-timers": "github:sinonjs/fake-timers#0bfffc1",
"@types/debug": "^4.1.8",
"@types/node": "^20.3.2",
"@types/sinonjs__fake-timers": "^8.1.2",
"@types/split2": "^4.2.0",
"@types/stoppable": "^1.1.1",
"@types/tap": "^15.0.8",
"chai": "^4.3.10",
"cross-zip": "^4.0.0",
"desm": "^1.3.0",
"globby": "^11.1.0",
"js-yaml": "^4.1.0",
"license-checker": "^25.0.1",
"node-fetch": "^2.7.0",
"ora": "^5.4.1",
"proxy": "^1.0.2",
"rimraf": "^5.0.0",
"semver": "^7.5.4",
"split2": "^4.2.0",
"stoppable": "^1.1.0",
"tap": "^16.3.7",
"ts-node": "^10.9.1",
"ts-standard": "^12.0.2",
"xmlbuilder2": "^2.4.1",
"zx": "^7.2.2"
},
"dependencies": {
"@elastic/transport": "^8.8.1",
"tslib": "^2.5.0"
},
"tap": {
"ts": true,
"jsx": false,
"flow": false,
"coverage": false,
"check-coverage": false,
"files": "test/unit/{*,**/*}.test.ts"
}
}