-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.61 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
{
"name": "azure-function-middleware-openapi-generator",
"version": "0.0.1",
"description": "OpenAPI Generator for @senacor/azure-function-middleware",
"main": "index/dist.js",
"types": "dist/index.d.ts",
"files": [
"/dist",
"LICENSE",
"README.md"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/senacor/azure-function-middleware-openapi-generator/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/senacor/azure-function-middleware-openapi-generator.git"
},
"engines": {
"node": ">=20.0.0"
},
"keywords": [
"azure",
"function",
"middleware",
"openapi"
],
"scripts": {
"build": "tsc",
"test": "jest",
"test:integration": "jest --config jest.integration.config.js",
"lint": "eslint ./src/**/*.ts ./example/src/**/*.ts ./integration-test/**/*.ts",
"lint:fix": "npm run lint -- --fix"
},
"peerDependencies": {
"@azure/functions": "^4.0.0",
"@senacor/azure-function-middleware": "^3.2.0",
"durable-functions": "^3.0.0",
"joi": "^17.0.0"
},
"dependencies": {
"glob": "11.0.0",
"joi-to-json": "4.3.0",
"openapi-types": "12.1.3",
"proxyquire": "2.1.3",
"yaml": "2.6.1"
},
"devDependencies": {
"@eslint/js": "9.17.0",
"@types/jest": "29.5.12",
"@types/node": "20.0.0",
"@types/proxyquire": "1.3.31",
"eslint": "9.17.0",
"eslint-config-prettier": "10.0.1",
"eslint-plugin-prettier": "5.2.1",
"globals": "15.13.0",
"jest": "29.7.0",
"prettier": "3.4.2",
"ts-jest": "29.1.5",
"typescript": "5.7.2",
"typescript-eslint": "8.18.0"
}
}