forked from ubaniabalogun/uscis-case-status-notifier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
24 lines (24 loc) · 821 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
24
{
"name": "uscis-case-status-notifier",
"version": "1.0.0",
"description": "Receive an SMS update when a USCIS case status changes",
"main": "index.js",
"dependencies": {
"cli-prompt": "^0.6.0",
"serverless": "^1.32.0",
"serverless-package-python-functions": "^0.2.5"
},
"devDependencies": {},
"config": {
"region": "us-west-2",
"stage": "dev",
"awsProfile": "serverless-admin"
},
"scripts": {
"config": "node config.js",
"deploy": "sls deploy --stage $npm_package_config_stage --region $npm_package_config_region --aws-profile $npm_package_config_awsProfile --verbose",
"remove": "sls remove --aws-profile $npm_package_config_awsProfile --stage $npm_package_config_stage --region $npm_package_config_region"
},
"author": "Ubani Balogun",
"license": "ISC"
}