This repository was archived by the owner on Feb 10, 2023. It is now read-only.
forked from Himenon/openapi-typescript-code-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
125 lines (125 loc) · 3.81 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
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "@learnwiz/openapi-typescript-code-generator",
"version": "0.18.14",
"description": "OpenAPI Code Generator using TypeScript AST.",
"keywords": [
"openapi",
"openapi3",
"openapi-codegen",
"openapi-generator",
"typescript",
"typescript-ast"
],
"homepage": "https://github.com/learnwiz/openapi-typescript-code-generator#readme",
"bugs": {
"url": "https://github.com/learnwiz/openapi-typescript-code-generator/issues"
},
"repository": {
"type": "git",
"url": "git@github.com:learnwiz/openapi-typescript-code-generator.git"
},
"license": "MIT",
"author": {
"name": "Himenon",
"email": "k.himeno314@gmail.com",
"url": "https://github.com/Himenon"
},
"sideEffects": false,
"main": "lib/$cjs/index.js",
"module": "lib/$esm/index.js",
"browser": "lib/$esm/index.js",
"types": "lib/$types/index.d.ts",
"directories": {
"lib": "lib"
},
"files": [
"lib",
"package.json"
],
"scripts": {
"build": "pnpm ts ./scripts/build.ts",
"clean": "pnpm ts ./scripts/clean.ts",
"format:code": "prettier \"**/*.{js,jsx,ts,tsx,json,yml,yaml,md,html}\" --write",
"format:code:eslint": "eslint \"**/*.{ts,tsx}\" --fix",
"format:yarn:lock": "yarn-deduplicate yarn.lock --strategy highest",
"lerna:version:up": "lerna version --yes",
"release:github:registry": "pnpm publish --no-git-checks --registry https://npm.pkg.github.com/:_authToken=${NODE_AUTH_TOKEN}",
"release:npm:registry": "pnpm publish --no-git-checks",
"test": "run-p test:depcruise test:jest test:code:gen test:snapshot",
"test:code:gen": "pnpm ts ./scripts/testCodeGen.ts",
"test:depcruise": "depcruise --validate .dependency-cruiser.js src",
"test:eslint": "eslint \"src/**/*.{ts,tsx}\"",
"test:jest": "jest -c ./jest.config.js --collect-coverage",
"test:snapshot": "jest -c ./jest.snapshot.config.js",
"ts": "ts-node -P tsconfig.build.json",
"update:snapshot": "pnpm jest -c ./jest.snapshot.config.js --updateSnapshot",
"watch": "pnpm ts ./scripts/watch.ts",
"validate": "pnpm ts ./scripts/validate.ts"
},
"resolutions": {
"kind-of": "6.0.3",
"node-fetch": "2.6.1"
},
"dependencies": {
"@himenon/path-oriented-data-structure": "0.1.3",
"@types/json-schema": "7.0.7",
"ajv": "8.0.5",
"dot-prop": "6.0.1",
"js-yaml": "4.0.0"
},
"devDependencies": {
"@commitlint/cli": "12.1.1",
"@commitlint/config-conventional": "12.1.1",
"@swc/core": "^1.2.173",
"@swc/helpers": "^0.3.8",
"@swc/jest": "^0.2.20",
"@types/chokidar": "2.1.3",
"@types/jest": "26.0.22",
"@types/js-yaml": "4.0.0",
"@types/node": "14.14.37",
"@types/rimraf": "3.0.0",
"@typescript-eslint/eslint-plugin": "4.20.0",
"@typescript-eslint/parser": "4.20.0",
"chokidar": "3.5.1",
"conventional-changelog-angular-all": "1.7.0",
"cpy": "8.1.2",
"dependency-cruiser": "9.24.0",
"eslint": "7.23.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-import": "2.22.1",
"execa": "5.0.0",
"generate-changelog": "1.8.0",
"import-sort-style-module": "6.0.0",
"jest": "26.6.3",
"jest-cli": "26.6.3",
"lerna": "4.0.0",
"lint-staged": "10.5.4",
"npm-run-all": "4.1.5",
"openapi-schema-validator": "7.2.3",
"prettier": "2.2.1",
"prettier-plugin-import-sort": "0.0.6",
"read-pkg-up": "^7.0.1",
"rimraf": "3.0.2",
"simple-git-hooks": "^2.7.0",
"sort-package-json": "1.49.0",
"ts-jest": "26.5.4",
"ts-node": "10.9.1",
"typescript": "4.7.4",
"yarn-deduplicate": "3.1.0"
},
"engines": {
"pnpm": ">=6"
},
"publishConfig": {
"access": "public"
},
"importSort": {
".js, .jsx, .ts, .tsx": {
"style": "module",
"parser": "typescript"
}
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
}
}