-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.04 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
{
"name": "@shraeyas/elastic-writeable-stream",
"version": "1.0.2",
"description": "Get a writeable stream for elastic search",
"main": "index.ts",
"exports": "./dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/index.*"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rimraf dist && tsc"
},
"tap": {
"ts": false,
"coverage": false,
"node-arg": [
"--no-warnings",
"--loader=ts-node/esm"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Shraeyas/elastic-writeable-stream.git"
},
"keywords": [
"elasticsearch",
"stream",
"bulk",
"write",
"pino",
"transport",
"logging"
],
"author": "",
"license": "ISC",
"dependencies": {
"@elastic/elasticsearch": "^8.10.0",
"@elastic/transport": "^8.3.4",
"elasticsearch": "^16.7.3",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
},
"devDependencies": {
"@types/elasticsearch": "^5.0.43",
"@types/node": "^20.10.2"
}
}