-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 1.25 KB
/
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
25
26
27
28
{
"name": "aws-web-utilities",
"version": "1.0.0",
"description": "Make sure a website is running",
"main": "handler.js",
"scripts": {
"start": "./node_modules/.bin/serverless offline -s dev",
"debug": "serverless invoke local -f ping",
"deploy": "serverless deploy --stage test",
"deploy-production": "serverless deploy --stage production",
"test": "npm run test:404 && npm run test:google && npm run test:missing-http && npm run test:no-domain && npm run test:null",
"test:404": "serverless invoke local --function ping --path ./test/fixtures/404.json",
"test:google": "serverless invoke local --function ping --path ./test/fixtures/google.json",
"test:missing-http": "serverless invoke local --function ping --path ./test/fixtures/missing-http.json",
"test:no-domain": "serverless invoke local --function ping --path ./test/fixtures/no-domain.json",
"test:null": "serverless invoke local --function ping --path ./test/fixtures/null.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zymotik/aws-web-utilities.git"
},
"author": "Ian Brown",
"license": "MIT",
"homepage": "https://github.com/zymotik/aws-web-utilities#readme",
"devDependencies": {
"serverless": "^1.36.3"
}
}