UNPKG

serverless-blue-green-deployments

Version:

A Serverless plugin to implement blue/green deployment of Lambda functions

59 lines (58 loc) 1.42 kB
{ "name": "serverless-blue-green-deployments", "engines": { "node": ">=4.0" }, "version": "0.4.0", "description": "A Serverless plugin to implement blue/green deployment of Lambda functions", "main": "serverless-blue-green-deployments.js", "scripts": { "test": "npm run lint && NODE_ENV=test ./node_modules/mocha/bin/mocha $(find ./ -name '*.test.js' -not -path '.*/node_modules/*')", "watch": "NODE_ENV=test ./node_modules/mocha/bin/mocha -w $(find ./ -name '*.test.js' -not -path '*/node_modules/*')", "lint": "standard" }, "author": "Vitaly Dubovets <dubovetsvitaliy@gmail.com>", "license": "ISC", "repository": { "url": "https://github.com/VitalyDubovets/serverless-blue-green-deployments.git", "type": "git" }, "dependencies": { "flat": "^4.1.0", "lodash": "^4.17.20", "np": "^7.0.0", "omit-empty": "^0.4.1" }, "devDependencies": { "chai": "^4.2.0", "get-installed-path": "^4.0.8", "husky": "^3.0.1", "mocha": "^8.2.1", "serverless": "^2.11.1", "standard": "*" }, "peerDependencies": { "serverless": ">= 1.26.0" }, "keywords": [ "aws", "lambda", "serverless", "canary", "blue", "green", "gradual", "deployments" ], "standard": { "globals": [ "describe", "context", "it", "before", "after", "beforeEach", "afterEach" ] } }