UNPKG

843 BJSONView Raw
1{
2 "version": "1.0.1",
3 "license": "MIT",
4 "author": {
5 "name": "Adrian Praja",
6 "email": "adrian@databank.io",
7 "url": "https://awspilot.dev"
8 },
9 "name": "aws-lambda",
10 "description": "Deploy AWS Lambda functions from command line using a json or yaml config file.",
11 "keywords": [
12 "lambda",
13 "aws lambda",
14 "deploy",
15 "deploy lambda"
16 ],
17 "homepage": "https://awspilot.dev",
18 "bugs": "https://github.com/awspilot/cli-lambda-deploy/issues",
19 "repository": {
20 "type": "git",
21 "url": "https://github.com/awspilot/cli-lambda-deploy"
22 },
23 "main": "lib/main.js",
24 "bin": {
25 "lambda": "./bin/lambda"
26 },
27 "dependencies": {
28 "aws-sdk": "*",
29 "js-yaml": "^3.13.1",
30 "commander": "^2.5.0",
31 "dotenv": "^0.4.0"
32 },
33
34
35
36 "devDependencies": {
37 "mocha": "5.2.0"
38 },
39 "scripts": {
40 "test": "mocha --timeout 100000 -S -R spec --exit"
41 }
42}