-
-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.56 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.56 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
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"author": "Roberto Pintos López",
"bugs": {
"url": "https://github.com/inversify/monorepo/issues"
},
"description": "InversifyJs HTTP OpenApi package",
"dependencies": {
"@inversifyjs/http-core": "workspace:*",
"@inversifyjs/json-schema-pointer": "workspace:*",
"@inversifyjs/reflect-metadata-utils": "1.5.0",
"mime-types": "^3.0.2",
"swagger-ui-dist": "^5.32.1"
},
"devDependencies": {
"@hono/node-server": "1.19.12",
"@inversifyjs/eslint-plugin-require-extensions": "workspace:*",
"@inversifyjs/http-express": "workspace:*",
"@inversifyjs/http-express-v4": "workspace:*",
"@inversifyjs/http-fastify": "workspace:*",
"@inversifyjs/http-hono": "workspace:*",
"@inversifyjs/json-schema-types": "workspace:*",
"@inversifyjs/open-api-types": "workspace:*",
"@stryker-mutator/core": "9.6.0",
"@stryker-mutator/typescript-checker": "9.6.0",
"@stryker-mutator/vitest-runner": "9.6.0",
"@types/express": "5.0.6",
"@types/express4": "npm:@types/express@4.17.25",
"@types/mime-types": "3.0.1",
"@types/node": "24.12.2",
"@types/swagger-ui-dist": "3.30.6",
"@vitest/coverage-v8": "4.1.2",
"eslint": "10.2.0",
"express": "5.2.1",
"express4": "npm:express@4.22.1",
"fastify": "5.8.4",
"hono": "4.12.10",
"prettier": "3.8.1",
"rimraf": "6.1.3",
"tslib": "2.8.1",
"typescript": "6.0.2",
"vitest": "4.1.2"
},
"devEngines": {
"node": "^24.10.0",
"pnpm": "^10.13.1"
},
"homepage": "https://inversify.io",
"keywords": [
"dependency injection",
"dependency inversion",
"di",
"inversion of control container",
"ioc",
"javascript",
"node",
"typescript"
],
"license": "MIT",
"exports": {
".": "./lib/index.js",
"./v3Dot1": "./lib/index.js",
"./v3Dot2": "./lib/v3Dot2.js"
},
"name": "@inversifyjs/http-open-api",
"peerDependencies": {
"inversify": "^8.1.0"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/inversify/monorepo.git"
},
"scripts": {
"build": "tsc",
"build:clean": "rimraf lib",
"format": "prettier --write ./src",
"lint": "eslint ./src",
"prebuild": "pnpm run build:clean",
"test": "vitest run",
"test:integration": "pnpm run test --project Integration",
"test:coverage": "pnpm run test:unit --coverage",
"test:mutation": "stryker run",
"test:uncommitted": "pnpm run test --changed=HEAD",
"test:unit": "pnpm run test --project Unit"
},
"version": "5.2.0",
"type": "module"
}