@flagsmith/serverless-plugin-canary-deployments
Version:
A Serverless plugin to implement canary deployment of Lambda functions
67 lines (66 loc) • 1.76 kB
JSON
{
"name": "@flagsmith/serverless-plugin-canary-deployments",
"engines": {
"node": ">=4.0"
},
"version": "0.9.1",
"description": "A Serverless plugin to implement canary deployment of Lambda functions",
"main": "serverless-plugin-canary-deployments.js",
"scripts": {
"test": "npm run lint && NODE_ENV=test npx mocha $(find ./ -name '*.test.js' -not -path '.*/node_modules/*')",
"watch": "NODE_ENV=test npx mocha -w $(find ./ -name '*.test.js' -not -path '*/node_modules/*')",
"lint": "standard"
},
"author": "David García <davidgf1987@gmail.com>",
"contributors": [
"Carlos Castellanos <me@carloscastellanosvera.com> (https://github.com/ccverak/)",
"Kartikeya Verma <kverma23@outlook.com> (https://github.com/kverma23/)",
"Matthew Elwell <matthew.elwell@flagsmith.com> (https://github.com/matthewelwell/)",
"Kim Gustyr <kim.gustyr@flagsmith.com> (https://github.com/khvn26/)"
],
"license": "ISC",
"repository": {
"url": "https://github.com/flagsmith/serverless-plugin-canary-deployments.git",
"type": "git"
},
"dependencies": {
"flat": "^5.0.1",
"lodash": "^4.17.20",
"omit-empty": "^0.4.1"
},
"devDependencies": {
"chai": "^4.2.0",
"get-installed-path": "^4.0.8",
"husky": "^3.0.1",
"mocha": "^10.2.0",
"serverless": "^2.22.0",
"standard": "*"
},
"peerDependencies": {
"serverless": ">= 1.26.0"
},
"keywords": [
"aws",
"lambda",
"serverless",
"canary",
"gradual",
"deployments"
],
"husky": {
"hooks": {
"pre-push": "npm test"
}
},
"standard": {
"globals": [
"describe",
"context",
"it",
"before",
"after",
"beforeEach",
"afterEach"
]
}
}