-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.47 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.47 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
{
"name": "@growx-tech/aws-lambda-handyman",
"version": "0.6.1",
"description": "AWS Lambda TypeScript validation made easy 🏄",
"files": [
"lib"
],
"author": "Growy",
"license": "ISC",
"scripts": {
"build": "tsc",
"build:all": "tsc --project tsconfig.cjs.json && tsc --project tsconfig.es2015.json && tsc --project tsconfig.types.json",
"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 .",
"prettier:check": "prettier --check .",
"pre-pr": "npm run prettier && npm run test",
"pp": "npm run pre-pr",
"ipp": "npm i && npm run pp",
"dev:link": "npm link"
},
"dependencies": {
"class-transformer": "0.5.1",
"class-validator": "0.14.3",
"zod": "4.3.6"
},
"devDependencies": {
"@types/aws-lambda": "8.10.152",
"@types/jest": "30.0.0",
"@types/node": "24.10.12",
"jest": "30.2.0",
"make-coverage-badge": "1.2.0",
"prettier": "3.8.1",
"reflect-metadata": "0.2.2",
"ts-jest": "29.4.6",
"ts-node": "10.9.2",
"typescript": "5.9.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/growx-tech/aws-lambda-handyman.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
}
}