-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
76 lines (76 loc) · 1.9 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
{
"name": "@openapi-ts/backend",
"version": "2.0.5",
"description": "",
"bin": {
"openapi-ts-backend": "dist/tools/cli.js"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"homepage": "https://github.com/henhal/openapi-ts-backend#readme",
"bugs": {
"url": "https://github.com/henhal/openapi-ts-backend/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/henhal/openapi-ts-backend"
},
"scripts": {
"build": "tsc",
"clean": "rm -rf dist && rm -f tsconfig.tsbuildinfo",
"lint": "eslint src --ext js,ts --max-warnings 0",
"postbuild": "chmod u+x dist/tools/cli.js",
"prepublish": "yarn clean && yarn build && yarn test",
"prebuild": "rm -rf src/test/gen",
"pretest": "MODULE_PATH=../.. ts-node src/tools/cli.ts generate-types src/test/api.yml src/test/gen",
"test": "NODE_PATH=src LOG_LEVEL=${LOG_LEVEL:=error} jest --config src/test/jest.config.js"
},
"author": "[email protected]",
"files": [
"dist/"
],
"keywords": [
"openapi",
"openapi3",
"http",
"server",
"api",
"backend",
"node",
"typescript",
"ts",
"json-schema",
"codegen",
"typegen",
"aws",
"lambda"
],
"dependencies": {
"@openapi-ts/request-types": "^1.0.5",
"ajv": "^7.1.1",
"ajv-formats": "^2.0.1",
"js-yaml": "^4.0.0",
"loglevel": "^1.7.1",
"openapi-backend": "^3.9.0",
"openapi-types": "^7.2.3",
"openapi-typescript": "^3.0.1"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/js-yaml": "^4.0.0",
"@types/node": "^14.14.31",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"eslint": "^7.21.0",
"jest": "^26.6.3",
"ts-jest": "^26.5.3",
"ts-node": "^9.1.1",
"typescript": ">=3"
},
"peerDependencies": {
"typescript": ">=3"
},
"publishConfig": {
"access": "public"
}
}