-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.04 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
{
"name": "openapi-ts-sdk",
"version": "1.48.0",
"description": "OpenAPI TypeScript SDK Generator",
"license": "MIT",
"author": "Osome",
"repository": "https://github.com/OsomePteLtd/openapi-ts-sdk",
"bin": {
"openapi-ts-sdk": "./cli.js"
},
"scripts": {
"build": "tsc",
"prebuild": "node scripts/parseSdkTemplate.js",
"test": "jest",
"test:ci": "jest --ci",
"test:updateSnapshots": "jest -u",
"prepublish": "npm run build"
},
"dependencies": {
"commander": "^6.2.1",
"dtsgenerator": "^3.16.2",
"lodash": "^4.17.15",
"prettier": "^2.3.0"
},
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/lodash": "^4.14.157",
"@types/node": "^14.0.5",
"@types/prettier": "^2.0.1",
"@types/qs": "^6.9.4",
"@types/tmp": "^0.2.0",
"@types/yamljs": "^0.2.31",
"axios": "^0.21.4",
"jest": "^29.4.0",
"nock": "^13.0.4",
"qs": "^6.11.0",
"tinyspec": "^2.5.0",
"tmp": "^0.2.1",
"ts-jest": "^29.0.5",
"typescript": "^4.9.4",
"yamljs": "^0.3.0"
}
}