forked from opensearch-project/opensearch-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
125 lines (125 loc) · 3.69 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "@opensearch-project/opensearch",
"description": "The official OpenSearch client for Node.js",
"main": "index.js",
"types": "index.d.ts",
"exports": {
".": {
"require": "./index.js",
"types": "./index.d.ts",
"import": "./index.mjs"
},
"./aws": "./lib/aws/index.js",
"./*": "./*"
},
"typesVersions": {
"*": {
".": [
"index.d.ts"
],
"aws": [
"./lib/aws/index.d.ts"
]
}
},
"homepage": "https://www.opensearch.org/",
"version": "2.4.0",
"versionCanary": "7.10.0-canary.6",
"keywords": [
"opensearch",
"opensearchDashboards",
"mapping",
"REST",
"search",
"client",
"index"
],
"scripts": {
"test": "npm run lint && tap test/{unit,acceptance}/{*,**/*,**/**/*}.test.js && npm run test:types",
"test:unit": "tap test/unit/{*,**/*,**/**/*}.test.js",
"test:acceptance": "tap test/acceptance/*.test.js",
"test:integration": "node test/integration/index.js",
"test:integration:helpers": "tap test/integration/helpers/*.test.js",
"test:integration:helpers-secure": "tap test/integration/helpers-secure/*.test.js",
"test:types": "tsd",
"test:coverage-90": "tap test/{unit,acceptance}/{*,**/*,**/**/*}.test.js --coverage --branches=90 --functions=90 --lines=90 --statements=90 --nyc-arg=\"--exclude=api\"",
"test:coverage-report": "tap test/{unit,acceptance}/{*,**/*,**/**/*}.test.js --coverage --branches=90 --functions=90 --lines=90 --statements=90 --nyc-arg=\"--exclude=api\" && nyc report --reporter=text-lcov > coverage.lcov",
"test:coverage-ui": "tap test/{unit,acceptance}/{*,**/*,**/**/*}.test.js --coverage --coverage-report=html --nyc-arg=\"--exclude=api\"",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"license-checker": "license-checker --production --onlyAllow='MIT;Apache-2.0;Apache1.1;ISC;BSD-3-Clause;BSD-2-Clause'",
"build-esm": "npx gen-esm-wrapper . index.mjs && eslint --fix index.mjs"
},
"author": "opensearch-project",
"original-author": {
"name": "Spencer Alger",
"company": "Elasticsearch BV"
},
"devDependencies": {
"@aws-sdk/types": "^3.160.0",
"@babel/eslint-parser": "^7.19.1",
"@sinonjs/fake-timers": "github:sinonjs/fake-timers#0bfffc1",
"@types/node": "^20.1.4",
"convert-hrtime": "^5.0.0",
"cross-zip": "^4.0.0",
"dedent": "^1.1.0",
"deepmerge": "^4.2.2",
"dezalgo": "^1.0.3",
"eslint": "^8.30.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"fast-deep-equal": "^3.1.3",
"into-stream": "^6.0.0",
"js-yaml": "^4.1.0",
"jsdoc": "^4.0.0",
"license-checker": "^25.0.1",
"minimist": "^1.2.5",
"node-fetch": "^3.2.10",
"ora": "^7.0.1",
"prettier": "^3.0.1",
"pretty-hrtime": "^1.0.3",
"proxy": "^1.0.2",
"rimraf": "^5.0.0",
"semver": "^7.3.5",
"simple-git": "^3.15.0",
"simple-statistics": "^7.7.0",
"split2": "^4.1.0",
"stoppable": "^1.1.0",
"tap": "^16.3.0",
"tsd": "^0.27.0",
"workq": "^3.0.0",
"xmlbuilder2": "^3.0.2"
},
"dependencies": {
"aws4": "^1.11.0",
"debug": "^4.3.1",
"hpagent": "^1.2.0",
"ms": "^2.1.3",
"secure-json-parse": "^2.4.0"
},
"resolutions": {
"**/strip-ansi": "^6.0.1"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/opensearch-project/opensearch-js.git"
},
"bugs": {
"url": "https://github.com/opensearch-project/opensearch-js/issues"
},
"engines": {
"node": ">=10",
"yarn": "^1.22.10"
},
"tsd": {
"directory": "test/types"
},
"tap": {
"ts": false,
"jsx": false,
"flow": false,
"coverage": false,
"jobs-auto": true
}
}