forked from davidgf/serverless-plugin-canary-deployments
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
23 lines (23 loc) · 867 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "sls-canary-deployments-example",
"version": "1.0.0",
"description": "",
"main": "handler.js",
"dependencies": {
"aws-sdk": "^2.203.0",
"uuid": "^3.2.1"
},
"devDependencies": {
"serverless": "^1.26.1",
"serverless-plugin-aws-alerts": "^1.2.4",
"serverless-plugin-canary-deployments": "^0.4.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"package": "npm un --no-save serverless-plugin-canary-deployments && npm pack ../ && npm i --no-save serverless-plugin-canary-deployments-0.4.1.tgz && sls package -s dev",
"deploy": "npm un --no-save serverless-plugin-canary-deployments && npm pack ../ && npm i --no-save serverless-plugin-canary-deployments-0.4.1.tgz && sls deploy -s dev",
"populate-table": "node ./scripts/populate-test-table"
},
"author": "",
"license": "ISC"
}