UNPKG

1.28 kBJSONView Raw
1{
2 "name": "node-lambda",
3 "version": "1.2.0",
4 "description": "Command line tool for locally running and remotely deploying your node.js applications to Amazon Lambda.",
5 "main": "lib/main.js",
6 "directories": {
7 "test": "test"
8 },
9 "scripts": {
10 "lint": "standard && standard bin/node-lambda",
11 "test": "npm run lint && npm run unit",
12 "unit": "mocha"
13 },
14 "bin": {
15 "node-lambda": "./bin/node-lambda"
16 },
17 "repository": {
18 "type": "git",
19 "url": "git://github.com/motdotla/node-lambda.git"
20 },
21 "keywords": [
22 "lambda",
23 "aws",
24 "amazon",
25 "amazon-lambda",
26 "aws-lambda",
27 "lambda-node",
28 "deploy",
29 "deployment"
30 ],
31 "readmeFilename": "README.md",
32 "author": "motdotla",
33 "license": "BSD-2-Clause",
34 "engines": {
35 "node": ">= 10.0.0"
36 },
37 "dependencies": {
38 "archiver": "^5.3.1",
39 "aws-sdk": "^2.1238.0",
40 "aws-xray-sdk-core": "^3.3.8",
41 "commander": "^9.4.1",
42 "continuation-local-storage": "^3.2.1",
43 "dotenv": "^16.0.3",
44 "fs-extra": "^10.1.0",
45 "klaw": "^4.0.1",
46 "minimatch": "^5.1.0",
47 "proxy-agent": "^5.0.0"
48 },
49 "devDependencies": {
50 "aws-sdk-mock": "^5.8.0",
51 "chai": "^4.3.6",
52 "mocha": "^10.1.0",
53 "node-zip": "^1.1.1",
54 "standard": "^17.0.0"
55 }
56}