-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 985 Bytes
/
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
{
"name": "@bits-cr/middy-joi-validator",
"version": "1.0.14-beta.7",
"description": "Middy middleware validator using joi.dev",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/bits-cr/middy-joi-validator",
"author": "bits-cr",
"license": "MIT",
"keywords": [
"middy",
"middleware",
"serverless",
"framework",
"AWS Lambda",
"validator",
"joi",
"schema"
],
"private": false,
"scripts": {
"build": "tsc",
"debug": "tsc -p tsconfig.json",
"test": "jest",
"test:check": "jest --coverage",
"test:debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand"
},
"devDependencies": {
"@middy/core": "^2.5.7",
"@types/aws-lambda": "^8.10.93",
"@types/jest": "^27.4.1",
"dotenv": "^16.0.0",
"jest": "^27.5.1",
"joi": "^17.6.0",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3"
},
"dependencies": {
"@middy/util": "^2.5.7"
}
}