-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.24 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
{
"name": "bunyan-elasticsearch-stream",
"version": "1.5.0",
"description": "A Bunyan stream for sending logs to Elasticsearch or Elastic Cloud data stream",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"repository": "https://github.com/sunjith/bunyan-elasticsearch-stream.git",
"author": {
"name": "sunjith"
},
"license": "MIT",
"scripts": {
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"spell-check": "cspell 'src/**/*.ts'",
"pretest": "yarn lint && yarn spell-check && yarn build",
"test": "jest",
"test-only": "jest",
"coverage": "jest --coverage",
"build": "tsc",
"start": "ts-node server.ts"
},
"pre-commit": [
"lint",
"spell-check"
],
"pre-push": [
"build"
],
"engines": {
"node": ">=12.0.0"
},
"engineStrict": true,
"dependencies": {
"@elastic/elasticsearch": "^8.5.0",
"bunyan": "^1.8.15"
},
"optionalDependencies": {},
"devDependencies": {
"@shelf/jest-elasticsearch": "^5.0.0",
"@types/bunyan": "^1.8.8",
"@types/jest": "^29.2.4",
"@types/node": "^18.11.11",
"jest": "^29.3.1",
"pre-commit": "^1.2.2",
"pre-push": "^0.1.4",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4"
}
}