forked from ferdikoomen/openapi-typescript-codegen
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.64 KB
/
Copy pathpackage.json
File metadata and controls
109 lines (109 loc) · 3.64 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@ciptex/openapi-typescript-codegen",
"version": "0.22.0",
"description": "Library that generates Typescript clients based on the OpenAPI specification.",
"author": "Ferdi Koomen & Matthew C Duggan",
"homepage": "https://github.com/Ciptex/openapi-typescript-codegen",
"repository": {
"type": "git",
"url": "git+https://github.com/Ciptex/openapi-typescript-codegen.git"
},
"publishConfig": {
"access": "public",
"cache": "~/.npm",
"registry": "https://registry.npmjs.org"
},
"bugs": {
"url": "https://github.com/Ciptex/openapi-typescript-codegen/issues"
},
"license": "MIT",
"keywords": [
"openapi",
"swagger",
"generator",
"typescript",
"yaml",
"json",
"axios",
"node"
],
"maintainers": [
{
"name": "Matthew Duggan",
"email": "matthew.duggan@ciptex.com"
}
],
"main": "dist/index.js",
"types": "types/index.d.ts",
"bin": {
"openapi": "bin/index.js"
},
"files": [
"bin/index.js",
"dist/index.js",
"types/index.d.ts"
],
"scripts": {
"clean": "rimraf ./dist ./test/generated ./test/e2e/generated ./samples/generated ./coverage ./node_modules/.cache",
"build": "rollup --config --environment NODE_ENV:development",
"build:watch": "rollup --config --environment NODE_ENV:development --watch",
"release": "rollup --config --environment NODE_ENV:production",
"validate": "tsc --project tsconfig.json --noEmit",
"run": "node ./test/index.js",
"test": "jest --selectProjects UNIT",
"test:update": "jest --selectProjects UNIT --updateSnapshot",
"test:watch": "jest --selectProjects UNIT --watch",
"test:coverage": "jest --selectProjects UNIT --coverage",
"test:e2e": "jest --selectProjects E2E --runInBand",
"eslint": "eslint .",
"eslint:fix": "eslint . --fix",
"prepublishOnly": "npm run clean && npm run release"
},
"dependencies": {
"@aws-crypto/sha256-js": "^4.0.0",
"@aws-sdk/client-sts": "^3.312.0",
"@aws-sdk/signature-v4": "^3.310.0",
"abort-controller": "^3.0.0",
"axios": "^0.27.2",
"camelcase": "6.3.0",
"commander": "^9.3.0",
"form-data": "^4.0.0",
"handlebars": "^4.7.7",
"json-schema-ref-parser": "^9.0.9"
},
"devDependencies": {
"@babel/cli": "^7.18.6",
"@babel/core": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@rollup/plugin-commonjs": "^22.0.1",
"@rollup/plugin-node-resolve": "13.3.0",
"@rollup/plugin-typescript": "8.3.3",
"@types/express": "4.17.13",
"@types/glob": "7.2.0",
"@types/jest": "^28.1.4",
"@types/node": "^18.0.3",
"@types/qs": "6.9.7",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"codecov": "3.8.3",
"eslint": "^8.19.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "7.0.0",
"express": "4.18.1",
"glob": "8.0.3",
"jest": "^28.1.2",
"jest-cli": "^28.1.2",
"prettier": "^2.7.1",
"puppeteer": "^15.3.2",
"qs": "^6.11.0",
"rimraf": "^3.0.2",
"rollup": "^2.76.0",
"rollup-plugin-node-externals": "^4.1.1",
"rollup-plugin-terser": "7.0.2",
"ts-node": "^10.8.2",
"tslib": "2.4.0",
"typescript": "^4.7.4"
}
}