forked from fabien0102/openapi-codegen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.67 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
{
"name": "openapi-codegen",
"version": "0.0.1",
"description": "OpenAPI code generator framework",
"repository": "https://github.com/fabien0102/openapi-codegen",
"author": "Fabien Bernard",
"license": "MIT",
"private": true,
"engines": {
"node": ">=16"
},
"workspaces": [
"cli",
"plugins/typescript"
],
"scripts": {
"test": "jest",
"build:all": "npx lerna run build",
"all-contrib": "all-contributors"
},
"devDependencies": {
"@swc/jest": "^0.2.36",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.30",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"all-contributors-cli": "^6.26.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"got": "^14.2.1",
"husky": "^9.0.11",
"jest": "^30.0.0-alpha.1",
"lerna": "^8.1.2",
"prettier": "^3.2.5",
"pretty-quick": "^4.0.0",
"typescript": "5.4.3",
"typescript-eslint": "^7.9.0"
},
"jest": {
"projects": [
{
"displayName": "cli",
"transform": {
"^.+\\.(t|j)sx?$": [
"@swc/jest",
{
"sourceMaps": true
}
]
},
"transformIgnorePatterns": [],
"testMatch": [
"<rootDir>/cli/**/*.test.ts"
]
},
{
"displayName": "plugins/typescript",
"transform": {
"^.+\\.(t|j)sx?$": [
"@swc/jest",
{
"sourceMaps": true
}
]
},
"testMatch": [
"<rootDir>/plugins/typescript/**/*.test.ts"
]
}
]
},
"dependencies": {
"openapi3-ts": "^4.3.1"
}
}