-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.44 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
{
"name": "@osskit/dafka-producer-fetch-client",
"version": "0.0.5",
"repository": {
"url": "https://github.com/osskit/dafka-producer-fetch-client"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"types": "./dist/index.d.ts",
"type": "module",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"lint:base": "eslint . --ext .ts",
"lint": "yarn lint:base --fix",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --config tests/jest.config.ts",
"format": "prettier --write '**/*.{ts,js,json}'",
"prepare": "husky install"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@osskit/eslint-config": "^1.0.21",
"@osskit/prettier-config": "^0.0.1",
"@osskit/tsconfig": "^0.0.6",
"@osskit/wiremock-client": "^4.3.2",
"@types/jest": "^29.5.10",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"eslint": "^8.54.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-unicorn": "^49.0.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.1.0",
"prettier": "^3.1.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
},
"lint-staged": {
"*.ts": "eslint --fix",
"*.{ts,js,json}": "prettier --write"
}
}