{
  "name": "lamb-cli",
  "version": "1.0.8",
  "description": "Simple cli to deal with Aws Lambda",
  "main": "./build/index.js",
  "types": "./build/index.d.ts",
  "bin": "./build/index.js",
  "files": [
    "build"
  ],
  "scripts": {
    "clean": "del ./build/*",
    "build": "npm run clean && tsc",
    "pub": "npm version patch && npm run build && npm publish",
    "try": "ts-node src/index.ts",
    "test:watch": "jest --no-cache --watchAll"
  },
  "keywords": [
    "lambda",
    "aws",
    "cli"
  ],
  "author": "Shobhan Biswas",
  "license": "ISC",
  "repository": {
    "type": "git",
    "url": "https://github.com/shobhanbiswas11/lamb-cli.git"
  },
  "devDependencies": {
    "@types/adm-zip": "^0.5.0",
    "@types/inquirer": "^9.0.3",
    "@types/jest": "^29.2.4",
    "@types/uuid": "^9.0.0",
    "del-cli": "^5.0.0",
    "jest": "^29.3.1",
    "memfs": "^3.4.12",
    "ts-jest": "^29.0.3",
    "typescript": "^4.9.3"
  },
  "dependencies": {
    "@aws-sdk/client-iam": "^3.226.0",
    "@aws-sdk/client-lambda": "^3.223.0",
    "adm-zip": "^0.5.9",
    "chalk": "4.0.0",
    "commander": "^9.4.1",
    "esbuild": "^0.15.17",
    "inquirer": "^8.0.0",
    "uuid": "^9.0.0"
  }
}
