-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
100 lines (100 loc) · 2.78 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@spailybot/moleculer-auto-openapi",
"version": "1.3.1",
"description": "Generate openapi scheme for moleculer",
"main": "./lib/index.cjs",
"module": "./lib/index.mjs",
"types": "./lib/index.d.ts",
"type": "module",
"sideEffects": false,
"scripts": {
"prepack": "npm run build",
"version": "npm run build",
"preversion": "git update-index --really-refresh && git diff-index --quiet HEAD || (echo git is not clean && exit 1)",
"ts-types": "tsc -p tsconfig.build.json --emitDeclarationOnly --outDir lib/types",
"build": "rimraf lib && node esbuild.mjs && npm run ts-types",
"jest": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test": "npm run jest --",
"lint": "eslint -f unix \"src/**\"",
"lint:fix": "npm run lint -- --fix",
"ci:eslint": "npm run lint -- -f json -o ./coverage/eslint-report.json",
"generate:documentation": "typedoc"
},
"files": [
"lib",
"index.d.ts"
],
"exports": {
".": {
"import": {
"types": "./lib/index.d.ts",
"default": "./lib/index.mjs"
},
"require": {
"types": "./lib/index.d.cts",
"default": "./lib/index.cjs"
},
"default": "./lib/index.cjs"
},
"./types": {
"types": "./index.d.ts"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/spailybot/moleculer-auto-openapi.git"
},
"keywords": [
"openapi",
"openapi 3.1",
"fastest-validator",
"swagger",
"moleculer",
"moleculer-web"
],
"author": "SpailyBot <[email protected]>",
"contributors": [
"Gabdrashitov Rinat <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/spailybot/moleculer-auto-openapi/issues"
},
"homepage": "https://github.com/spailybot/moleculer-auto-openapi#readme",
"devDependencies": {
"@jest/globals": "^29.7.0",
"@seriousme/openapi-schema-validator": "^2.2.1",
"@tsconfig/node-lts": "^20.1.3",
"@types/body-parser": "^1.19.5",
"@types/node": "^20.12.11",
"@types/qs": "^6.9.15",
"@types/swagger-ui-dist": "^3.30.4",
"@typescript-eslint/parser": "7.8.0",
"axios": "^1.6.8",
"esbuild": "^0.21.1",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.1.3",
"fastest-validator": "^1.18.0",
"jest": "^29.7.0",
"jest-sonar": "^0.2.16",
"moleculer": "^0.14.33",
"moleculer-web": "^0.10.7",
"openapi-types": "^12.1.3",
"prettier": "3.2.5",
"rimraf": "^5.0.5",
"swagger-ui-dist": "^5.10.0",
"ts-jest": "^29.1.2",
"typedoc": "^0.25.13",
"typescript": "^5.4.5"
},
"peerDependencies": {
"moleculer": "^0.14.31"
},
"optionalDependencies": {
"swagger-ui-dist": "^5.17.7"
},
"engines": {
"node": ">=14.0.0"
}
}