-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.76 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
{
"name": "typed-api-fetch",
"version": "0.8.0",
"description": "Generate a typed fetch method from a typescript definition",
"license": "MIT",
"author": "mnorlin",
"homepage": "https://github.com/mnorlin/typed-api-fetch#readme",
"repository": {
"type": "git",
"url": "https://github.com/mnorlin/typed-api-fetch"
},
"bugs": {
"url": "https://github.com/mnorlin/typed-api-fetch/issues"
},
"keywords": [
"fetch",
"client",
"typescript",
"ts",
"openapi-typescript",
"swagger",
"openapi",
"openapi 3"
],
"main": "dist/index.js",
"files": [
"dist"
],
"private": false,
"scripts": {
"build": "tsc",
"test": "jest",
"test:ci": "jest --silent --ci --collectCoverage --reporters=default --reporters=jest-junit",
"lint": "eslint --ext .js,.ts src test --max-warnings=0",
"format": "prettier --write .",
"prepare": "husky install"
},
"devDependencies": {
"@types/jest": "29.5.12",
"@typescript-eslint/eslint-plugin": "6.7.5",
"@typescript-eslint/parser": "6.13.2",
"eslint": "8.55.0",
"eslint-config-prettier": "9.1.0",
"husky": "8.0.3",
"jest": "29.7.0",
"jest-junit": "16.0.0",
"prettier": "3.2.5",
"ts-jest": "29.1.1",
"typescript": "5.3.3"
},
"jest": {
"roots": [
"test"
],
"preset": "ts-jest",
"testEnvironment": "node",
"clearMocks": true,
"coverageThreshold": {
"global": {
"lines": 95
}
},
"coverageDirectory": "./test_reports/coverage",
"collectCoverageFrom": [
"src/**/*.ts"
],
"coverageReporters": [
"html",
"text",
"text-summary",
"cobertura"
]
},
"jest-junit": {
"outputDirectory": "test_reports",
"outputName": "result.xml"
}
}