-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 859 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 859 Bytes
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
{
"name": "lambda-function-template",
"version": "1.0.0",
"description": "Lambda function template with hexagonal architecture",
"main": "handler.js",
"engines": {
"node": "22"
},
"scripts": {
"build": "tsc",
"test": "cucumber-js",
"lint": "eslint src/**/*.ts",
"clean": "rm -rf dist",
"zipnodev": "npm install --omit=dev && zip -r function_exporter.zip dist/ node_modules/"
},
"dependencies": {
"purecloud-platform-client-v2": "*",
"ts-node": "*",
"@types/node": "^22"
},
"devDependencies": {
"@cucumber/cucumber": "*",
"typescript": "^5",
"@typescript-eslint/eslint-plugin": "*",
"@typescript-eslint/parser": "*",
"eslint": "*"
},
"keywords": [
"lambda",
"aws",
"typescript",
"hexagonal-architecture",
"purecloud"
],
"author": "",
"license": "ISC"
}