This repository was archived by the owner on May 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.11 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.11 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
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
{
"name": "archive-logging-library",
"version": "1.0.31",
"description": "Library for writing logs to Archive logging instance",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint . --ext .ts",
"prettier-format": "prettier --config .prettierrc src/**/*.ts --write",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "https://github.com/archiveprotocol/logging-library.git"
},
"keywords": [
"archive"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/archiveprotocol/logging-library/issues"
},
"homepage": "https://github.com/archiveprotocol/logging-library#readme",
"devDependencies": {
"@babel/core": "7.22.15",
"@babel/preset-env": "7.22.15",
"@babel/preset-typescript": "7.22.15",
"@fluffy-spoon/substitute": "1.208.0",
"@golevelup/ts-jest": "0.4.0",
"@trivago/prettier-plugin-sort-imports": "4.2.0",
"@types/jest": "29.5.4",
"@typescript-eslint/eslint-plugin": "6.6.0",
"@typescript-eslint/parser": "6.6.0",
"axios": "1.5.0",
"babel-jest": "29.6.4",
"dotenv": "^16.3.1",
"eslint": "8.48.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-prettier": "5.0.0",
"husky": "8.0.3",
"jest": "29.6.4",
"jest-junit": "16.0.0",
"jest-offline": "1.0.1",
"lint-staged": "14.0.1",
"log4js": "6.9.1",
"logging-queue-interfaces": "https://github.com/archiveprotocol/logging-queue-interfaces#v1.0.17",
"prettier": "3.0.3",
"ts-jest": "29.1.1",
"ts-node": "10.9.1",
"tsconfig-paths": "4.2.0",
"typescript": "5.2.2"
},
"files": [
"lib/**/*"
],
"engines": {
"node": "^20.9.0",
"yarn": "3.6.3"
},
"dependencies": {
"kafkajs": "2.2.4"
},
"lint-staged": {
"*.ts": "eslint --cache --fix"
},
"packageManager": "yarn@3.6.3"
}