-
Notifications
You must be signed in to change notification settings - Fork 185
/
package.json
56 lines (56 loc) · 1.26 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
{
"name": "node-lambda",
"version": "1.3.0",
"description": "Command line tool for locally running and remotely deploying your node.js applications to Amazon Lambda.",
"main": "lib/main.js",
"directories": {
"test": "test"
},
"scripts": {
"lint": "standard && standard bin/node-lambda",
"test": "npm run lint && npm run unit",
"unit": "mocha"
},
"bin": {
"node-lambda": "./bin/node-lambda"
},
"repository": {
"type": "git",
"url": "git://github.com/motdotla/node-lambda.git"
},
"keywords": [
"lambda",
"aws",
"amazon",
"amazon-lambda",
"aws-lambda",
"lambda-node",
"deploy",
"deployment"
],
"readmeFilename": "README.md",
"author": "motdotla",
"license": "BSD-2-Clause",
"engines": {
"node": ">= 18.0.0"
},
"dependencies": {
"@dotenvx/dotenvx": "^1.14.0",
"archiver": "^7.0.0",
"aws-sdk": "^2.1377.0",
"aws-xray-sdk-core": "^3.5.0",
"commander": "^12.0.0",
"continuation-local-storage": "^3.2.1",
"fs-extra": "^11.1.1",
"klaw": "^4.1.0",
"minimatch": "^10.0.1",
"proxy-agent": "^6.2.0"
},
"devDependencies": {
"aws-sdk-mock": "^6.0.4",
"chai": "^5.0.0",
"mocha": "^10.1.0",
"node-zip": "^1.1.1",
"standard": "^17.0.0"
}
}