-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.6 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
{
"name": "aws-lambda-handyman",
"version": "0.5.11",
"description": "AWS Lambda TypeScript validation made easy 🏄",
"main": "./lib/cjs/src/index.js",
"typings": "./lib/types/src/index.d.ts",
"module": "./lib/es2015/src/index.js",
"es2015": "./lib/es2015/src/index.js",
"files": ["lib"],
"authors": ["Slaven Ivanov <[email protected]>", "Sander Boer <[email protected]>"],
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/growx-tech/aws-lambda-handyman.git"
},
"scripts": {
"build": "tsc",
"build:cjs": "tsc --project tsconfig.cjs.json",
"build:es2015": "tsc --project tsconfig.es2015.json",
"build:types": "tsc --project tsconfig.types.json",
"test": "jest && npm run badge >/dev/null 2>&1",
"badge": "make-coverage-badge --output-path ./static/coverage-badge.svg ",
"prettier": "prettier --write .",
"pre-pr": "npm run prettier && npm run test",
"dev:link": "npm link"
},
"sideEffects": false,
"dependencies": {
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"zod": "^3.23.6"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.101",
"@types/jest": "^28.1.6",
"@types/node": "^18.6.3",
"jest": "^28.1.3",
"make-coverage-badge": "^1.2.0",
"prettier": "^2.7.1",
"reflect-metadata": "^0.1.13",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"keywords": [
"aws",
"lambda",
"aws lambda",
"typescript",
"validate",
"validation",
"schema",
"aws lambda utility",
"http responses",
"error handling"
]
}