forked from alexkrkn/lambda-build
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.22 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.22 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
{
"name": "lambda-build",
"version": "1.0.6",
"description": "lambda-build uses esbuild to take in your nodejs lambda handler and return a zip file ready to be used by your lambda function",
"main": "./dist/lib.js",
"bin": "./dist/cli.js",
"scripts": {
"build": "tsc --project tsconfig.build.json",
"lint": "eslint src test --ext .ts --max-warnings=0",
"test": "mocha --recursive 'test' --extension ts --require esbuild-register"
},
"keywords": [
"lambda",
"serverless",
"esbuild"
],
"author": "alex@undefinedapps.com",
"license": "MIT",
"dependencies": {
"@aws-sdk/client-lambda": "^3.43.0",
"chalk": "^4.1.0",
"esbuild": "^0.14.2",
"filesize": "^8.0.6",
"jszip": "^3.7.1",
"yargs": "^17.3.0"
},
"devDependencies": {
"@types/filesize": "^5.0.0",
"@types/jszip": "^3.4.1",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.12",
"@types/sinon": "^10.0.6",
"@types/yargs": "^17.0.7",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"esbuild-register": "^3.2.0",
"eslint": "^8.4.1",
"mocha": "^9.1.3",
"publish-if-not-exists": "^1.1.0",
"sinon": "^12.0.1",
"typescript": "^4.5.2"
}
}