forked from fabien0102/openapi-codegen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.53 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
{
"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.12",
"@types/jest": "^27.0.2",
"@types/node": "^16.10.9",
"all-contributors-cli": "^6.20.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"got": "^12.4.1",
"husky": "^7.0.2",
"jest": "^27.2.5",
"lerna": "^5.5.0",
"prettier": "^2.4.1",
"pretty-quick": "^3.1.1",
"typescript": "4.8.2"
},
"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"
]
}
]
}
}