-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.24 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.24 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
{
"name": "@axa/bautajs-core",
"version": "4.0.0-beta.0",
"description": "Bauta.js is an add-on for your Node.js applications such as Express.js or Fastify.",
"main": "dist",
"types": "dist",
"files": [
"dist"
],
"scripts": {
"tsc": "tsc",
"build": "tsc --build",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
"test": "jest"
},
"bugs": {
"url": "https://github.com/axa-group/bauta.js/issues"
},
"homepage": "https://github.com/axa-group/bauta.js#readme",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/axa-group/bauta.js.git"
},
"keywords": [
"bautajs",
"middleware"
],
"license": "SEE LICENSE IN LICENSE.txt",
"engines": {
"node": ">=24",
"npm": ">=8"
},
"dependencies": {
"@apidevtools/swagger-parser": "^10.1.0",
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"fast-glob": "^3.2.12",
"fast-safe-stringify": "^2.1.1",
"hyperid": "^3.1.1",
"openapi-types": "^12.1.0",
"p-cancelable": "^2.1.1",
"pino": "^8.11.0",
"quick-lru-cjs": "^5.2.1"
},
"devDependencies": {
"@axa/bautajs-dev-config": "^4.0.0-beta.0"
}
}