-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.19 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.19 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@leanstacks/lambda-utils",
"version": "0.7.0",
"description": "A collection of utilities and helper functions designed to streamline the development of AWS Lambda functions using TypeScript.",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"docs"
],
"keywords": [
"lambda",
"aws",
"utilities",
"nodejs",
"typescript"
],
"author": "Matthew Warman <leanstacker@gmail.com> (https://leanstacks.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/leanstacks/lambda-utils.git"
},
"homepage": "https://github.com/leanstacks/lambda-utils#readme",
"bugs": {
"url": "https://github.com/leanstacks/lambda-utils/issues"
},
"scripts": {
"build": "rollup -c",
"build:watch": "rollup -c -w",
"clean": "rimraf coverage dist",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"prepare": "husky",
"prepublish": "npm run clean && npm run build",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"devDependencies": {
"@eslint/js": "9.39.2",
"@rollup/plugin-commonjs": "29.0.0",
"@rollup/plugin-node-resolve": "16.0.3",
"@rollup/plugin-terser": "0.4.4",
"@types/aws-lambda": "8.10.160",
"@types/jest": "30.0.0",
"@types/node": "25.1.0",
"@typescript-eslint/eslint-plugin": "8.54.0",
"@typescript-eslint/parser": "8.54.0",
"aws-sdk-client-mock": "4.1.0",
"eslint": "9.39.2",
"husky": "9.1.7",
"jest": "30.2.0",
"prettier": "3.8.1",
"rimraf": "6.1.2",
"rollup": "4.57.0",
"rollup-plugin-peer-deps-external": "2.2.4",
"rollup-plugin-typescript2": "0.36.0",
"ts-jest": "29.4.6",
"ts-node": "10.9.2",
"typescript": "5.9.3"
},
"peerDependencies": {
"@aws-sdk/client-dynamodb": "^3.x.x",
"@aws-sdk/client-lambda": "^3.x.x",
"@aws-sdk/client-sns": "^3.x.x",
"@aws-sdk/client-sqs": "^3.x.x",
"@aws-sdk/lib-dynamodb": "^3.x.x",
"pino": "^10.x.x",
"pino-lambda": "^4.x.x",
"zod": "^4.x.x"
}
}