-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 854 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 854 Bytes
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
{
"name": "feathers-openapi",
"version": "1.1.3",
"license": "MIT",
"dependencies": {
"joi-to-json": "^2.3.6",
"json-schema-to-zod": "^0.1.2",
"openapi3-ts": "^2.0.2",
"tslib": "^2.4.0",
"typescript": "^4.3.5",
"zod": "^3.17.10"
},
"scripts": {
"compile": "tsc -p tsconfig.json",
"prepublish": "rm -rf dist && npm run compile",
"mocha": "ts-mocha --growl --timeout=30000 --exit './test/**/*.test.ts' './src/**/*.spec.ts'"
},
"repository": {
"type": "git",
"url": "https://github.com/HardCoreQual/feathers-openapi"
},
"main": "dist/index.js",
"typings": "./dist/index.d.ts",
"devDependencies": {
"@feathersjs/feathers": "^3.3.1",
"@types/feathersjs__feathers": "^3.1.8",
"@types/mocha": "^9.1.1",
"joi": "^17.3.0",
"mocha": "^10.0.0",
"ts-mocha": "^10.0.0"
}
}