-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.68 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
{
"name": "@senacor/azure-function-middleware-openapi-generator",
"version": "0.3.0",
"description": "OpenAPI Generator for @senacor/azure-function-middleware",
"main": "index/dist.js",
"types": "dist/index.d.ts",
"bin": "./dist/index.js",
"files": [
"/dist",
"LICENSE",
"README.md"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/senacor/azure-function-middleware-openapi-generator/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/senacor/azure-function-middleware-openapi-generator.git"
},
"engines": {
"node": ">=22.0.0"
},
"keywords": [
"azure",
"function",
"middleware",
"openapi"
],
"scripts": {
"build": "tsc && chmod +x dist/index.js",
"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": ">=4.0.0",
"durable-functions": "^3.0.0",
"joi": "^18.0.0"
},
"dependencies": {
"glob": "13.0.6",
"joi-to-json": "5.0.5",
"openapi-types": "12.1.3",
"proxyquire": "2.1.3",
"yaml": "2.8.3"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@types/jest": "30.0.0",
"@types/node": "22.19.17",
"@types/proxyquire": "1.3.31",
"eslint": "10.1.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.5.5",
"globals": "17.6.0",
"jest": "30.3.0",
"prettier": "3.8.3",
"ts-jest": "29.4.6",
"typescript": "5.9.3",
"typescript-eslint": "8.59.2"
}
}