Skip to content

Commit 80f64ce

Browse files
Запасной Александр СергеевичЗапасной Александр Сергеевич
authored andcommitted
Added scoped name
1 parent 2e1aac4 commit 80f64ce

File tree

2 files changed

+102
-99
lines changed

2 files changed

+102
-99
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@
99
[![Code Climate][climate-image]][climate-url]
1010
[![Downloads][downloads-image]][downloads-url]
1111

12+
## It's a fork. Original repository:
13+
[Link](https://github.com/ferdikoomen/openapi-typescript-codegen)
14+
1215
> Node.js library that generates Typescript clients based on the OpenAPI specification.
1316
1417
## Why?

package.json

Lines changed: 99 additions & 99 deletions
Original file line numberDiff line numberDiff line change
@@ -1,101 +1,101 @@
11
{
2-
"name": "openapi-typescript-codegen-with-custom-client",
3-
"version": "0.0.1",
4-
"description": "Fork of library that generates Typescript clients based on the OpenAPI specification.",
5-
"author": "Sundved",
6-
"homepage": "https://github.com/Sundved/openapi-typescript-codegen",
7-
"repository": {
8-
"type": "git",
9-
"url": "git+https://github.com/Sundved/openapi-typescript-codegen.git"
10-
},
11-
"bugs": {
12-
"url": "https://github.com/Sundved/openapi-typescript-codegen/issues"
13-
},
14-
"license": "MIT",
15-
"keywords": [
16-
"openapi",
17-
"swagger",
18-
"codegen",
19-
"generator",
20-
"client",
21-
"typescript",
22-
"yaml",
23-
"json",
24-
"fetch",
25-
"xhr",
26-
"node"
27-
],
28-
"maintainers": [
29-
{
30-
"name": "Sundved",
31-
"email": "[email protected]"
32-
}
33-
],
34-
"main": "dist/index.js",
35-
"module": "dist/index.js",
36-
"types": "types/index.d.ts",
37-
"bin": {
38-
"openapi": "bin/index.js"
39-
},
40-
"files": [
41-
"bin/index.js",
42-
"dist/index.js",
43-
"types/index.d.ts"
44-
],
45-
"scripts": {
46-
"clean": "rimraf ./dist ./test/generated ./test/e2e/generated ./samples/generated ./coverage ./node_modules/.cache",
47-
"build": "rollup --config --environment NODE_ENV:development",
48-
"build:watch": "rollup --config --environment NODE_ENV:development --watch",
49-
"release": "rollup --config --environment NODE_ENV:production",
50-
"run": "node ./test/index.js",
51-
"test": "jest --selectProjects UNIT",
52-
"test:update": "jest --selectProjects UNIT --updateSnapshot",
53-
"test:watch": "jest --selectProjects UNIT --watch",
54-
"test:coverage": "jest --selectProjects UNIT --coverage",
55-
"test:e2e": "jest --selectProjects E2E --runInBand",
56-
"eslint": "eslint \"./src/**/*.ts\" \"./bin/index.js\" \"./types/index.d.ts\"",
57-
"eslint:fix": "eslint \"./src/**/*.ts\" \"./bin/index.js\" \"./types/index.d.ts\" --fix",
58-
"prettier": "prettier \"./src/**/*.ts\" \"./bin/index.js\" \"./types/index.d.ts\" --check",
59-
"prettier:fix": "prettier \"./src/**/*.ts\" \"./bin/index.js\" \"./types/index.d.ts\" --write",
60-
"prepublish": "yarn run clean && yarn run release"
61-
},
62-
"dependencies": {
63-
"camelcase": "^6.2.0",
64-
"commander": "^6.2.0",
65-
"handlebars": "^4.7.6",
66-
"js-yaml": "^3.14.0",
67-
"mkdirp": "^1.0.4",
68-
"rimraf": "^3.0.2"
69-
},
70-
"devDependencies": {
71-
"@babel/cli": "7.12.8",
72-
"@babel/core": "7.12.9",
73-
"@babel/preset-env": "7.12.1",
74-
"@babel/preset-typescript": "7.12.7",
75-
"@rollup/plugin-commonjs": "16.0.0",
76-
"@rollup/plugin-node-resolve": "10.0.0",
77-
"@types/express": "4.17.9",
78-
"@types/jest": "26.0.15",
79-
"@types/js-yaml": "3.12.5",
80-
"@types/node": "14.14.10",
81-
"@types/node-fetch": "2.5.7",
82-
"@typescript-eslint/eslint-plugin": "4.8.1",
83-
"@typescript-eslint/parser": "4.8.2",
84-
"eslint": "7.14.0",
85-
"eslint-config-prettier": "6.15.0",
86-
"eslint-plugin-prettier": "3.1.4",
87-
"eslint-plugin-simple-import-sort": "6.0.1",
88-
"express": "4.17.1",
89-
"form-data": "3.0.0",
90-
"glob": "7.1.6",
91-
"jest": "26.6.3",
92-
"jest-cli": "26.6.3",
93-
"node-fetch": "2.6.1",
94-
"prettier": "2.2.1",
95-
"puppeteer": "5.4.1",
96-
"rollup": "2.34.0",
97-
"rollup-plugin-terser": "7.0.2",
98-
"rollup-plugin-typescript2": "0.29.0",
99-
"typescript": "4.1.2"
100-
}
2+
"name": "@sundved/openapi-typescript-codegen",
3+
"version": "0.0.1",
4+
"description": "Fork of library that generates Typescript clients based on the OpenAPI specification.",
5+
"author": "Sundved",
6+
"homepage": "https://github.com/Sundved/openapi-typescript-codegen",
7+
"repository": {
8+
"type": "git",
9+
"url": "git+https://github.com/Sundved/openapi-typescript-codegen.git"
10+
},
11+
"bugs": {
12+
"url": "https://github.com/Sundved/openapi-typescript-codegen/issues"
13+
},
14+
"license": "MIT",
15+
"keywords": [
16+
"openapi",
17+
"swagger",
18+
"codegen",
19+
"generator",
20+
"client",
21+
"typescript",
22+
"yaml",
23+
"json",
24+
"fetch",
25+
"xhr",
26+
"node"
27+
],
28+
"maintainers": [
29+
"Sundved <[email protected]>"
30+
],
31+
"main": "dist/index.js",
32+
"module": "dist/index.js",
33+
"types": "types/index.d.ts",
34+
"bin": {
35+
"openapi": "bin/index.js"
36+
},
37+
"files": [
38+
"bin/index.js",
39+
"dist/index.js",
40+
"types/index.d.ts"
41+
],
42+
"scripts": {
43+
"clean": "rimraf ./dist ./test/generated ./test/e2e/generated ./samples/generated ./coverage ./node_modules/.cache",
44+
"build": "rollup --config --environment NODE_ENV:development",
45+
"build:watch": "rollup --config --environment NODE_ENV:development --watch",
46+
"release": "rollup --config --environment NODE_ENV:production",
47+
"run": "node ./test/index.js",
48+
"test": "jest --selectProjects UNIT",
49+
"test:update": "jest --selectProjects UNIT --updateSnapshot",
50+
"test:watch": "jest --selectProjects UNIT --watch",
51+
"test:coverage": "jest --selectProjects UNIT --coverage",
52+
"test:e2e": "jest --selectProjects E2E --runInBand",
53+
"eslint": "eslint \"./src/**/*.ts\" \"./bin/index.js\" \"./types/index.d.ts\"",
54+
"eslint:fix": "eslint \"./src/**/*.ts\" \"./bin/index.js\" \"./types/index.d.ts\" --fix",
55+
"prettier": "prettier \"./src/**/*.ts\" \"./bin/index.js\" \"./types/index.d.ts\" --check",
56+
"prettier:fix": "prettier \"./src/**/*.ts\" \"./bin/index.js\" \"./types/index.d.ts\" --write",
57+
"prepublish": "yarn run clean && yarn run release"
58+
},
59+
"dependencies": {
60+
"camelcase": "^6.2.0",
61+
"commander": "^6.2.0",
62+
"handlebars": "^4.7.6",
63+
"js-yaml": "^3.14.0",
64+
"mkdirp": "^1.0.4",
65+
"rimraf": "^3.0.2"
66+
},
67+
"devDependencies": {
68+
"@babel/cli": "7.12.8",
69+
"@babel/core": "7.12.9",
70+
"@babel/preset-env": "7.12.1",
71+
"@babel/preset-typescript": "7.12.7",
72+
"@rollup/plugin-commonjs": "16.0.0",
73+
"@rollup/plugin-node-resolve": "10.0.0",
74+
"@types/express": "4.17.9",
75+
"@types/jest": "26.0.15",
76+
"@types/js-yaml": "3.12.5",
77+
"@types/node": "14.14.10",
78+
"@types/node-fetch": "2.5.7",
79+
"@typescript-eslint/eslint-plugin": "4.8.1",
80+
"@typescript-eslint/parser": "4.8.2",
81+
"eslint": "7.14.0",
82+
"eslint-config-prettier": "6.15.0",
83+
"eslint-plugin-prettier": "3.1.4",
84+
"eslint-plugin-simple-import-sort": "6.0.1",
85+
"express": "4.17.1",
86+
"form-data": "3.0.0",
87+
"glob": "7.1.6",
88+
"jest": "26.6.3",
89+
"jest-cli": "26.6.3",
90+
"node-fetch": "2.6.1",
91+
"prettier": "2.2.1",
92+
"puppeteer": "5.4.1",
93+
"rollup": "2.34.0",
94+
"rollup-plugin-terser": "7.0.2",
95+
"rollup-plugin-typescript2": "0.29.0",
96+
"typescript": "4.1.2"
97+
},
98+
"directories": {
99+
"test": "test"
100+
}
101101
}

0 commit comments

Comments
 (0)