-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.98 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.98 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
{
"name": "@oapigen/cli",
"publishConfig": {
"access": "public"
},
"version": "0.0.0-version-set-from-ci",
"description": "Generate JavaScript or TypeScript code from Swagger/OpenAPI specifications",
"main": "./src/index.js",
"types": "./src/index.d.ts",
"repository": "oapigen/cli",
"contributors": [
"e.fedotov <[email protected]>",
"Sergey Sova <[email protected]> (https://sergeysova.com)"
],
"engines": {
"node": ">=14 <= 22"
},
"license": "MIT",
"keywords": [
"convert",
"swagger",
"api",
"js",
"types",
"oapigen",
"openapi",
"typescript"
],
"homepage": "https://github.com/oapigen/cli",
"bugs": {
"url": "https://github.com/oapigen/cli/issues"
},
"scripts": {
"test": "jest --testPathIgnorePatterns package.test",
"prepublishOnly": "pnpm test && pnpm test-pack",
"test-pack": "jest -i ./src/package.test.js",
"prepare": "husky install"
},
"files": [
"src/common",
"src/lib",
"!src/lib/presets/mocks",
"src/v2/index.js",
"src/v3/index.js",
"src/cli/index.js",
"src/index.d.ts",
"src/index.js",
"request.js"
],
"bin": {
"oapi": "./src/cli/index.js"
},
"dependencies": {
"@types/jest": "^26.0.14",
"change-case": "^4.1.1",
"commander": "^6.1.0",
"cosmiconfig": "^6.0.0",
"is-url": "^1.2.4",
"js-yaml": "^3.13.1",
"node-fetch": "^2.6.0",
"object-hash": "^2.0.3",
"url-parse": "^1.4.7"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"demo-swagger-to-js-preset": "^0.2.0",
"demo2-swagger-to-js-preset": "^0.1.0",
"demo3-swagger-to-js-preset": "^0.1.0",
"eslint": "^6.8.0",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^8.0.3",
"jest": "^26.5.2",
"openapi-preset-effector": "^0.3.2",
"prettier": "^2.8.2"
},
"packageManager": "[email protected]+sha512.bbd16e6d7286fd7e01f6b3c0b3c932cda2965c06a908328f74663f10a9aea51f1129eea615134bf992831b009eabe167ecb7008b597f40ff9bc75946aadfb08d"
}