This repository has been archived by the owner on Jul 19, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 1.63 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
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "whatdoeslambdasupport.com",
"version": "2.0.0",
"description": "An autogenerated static website to show what JavaScript functionality is supported out of the box with AWS Lambda with node.js'",
"main": "index.js",
"scripts": {
"deploy": "yarn deploy:importTestFiles && yarn deploy:installAppDependencies && yarn deploy:s3 && yarn deploy:package && yarn deploy:deploy",
"deploy:deploy": "node bin/deploy.js",
"deploy:importTestFiles": "node bin/importTestFiles.js",
"deploy:installAppDependencies": "cd functions/app && yarn install",
"deploy:package": "aws cloudformation package --template-file template.yml --output-template-file template.deployed.yml --s3-bucket deploy.whatdoeslambdasupport.com",
"deploy:s3": "aws s3 mb s3://deploy.whatdoeslambdasupport.com --region us-east-1",
"lint": "eslint --ignore-pattern 'functions/app/node_modules' --ignore-pattern 'functions/app/tests' .",
"test": "rm -rf dist/ && yarn deploy:importTestFiles && yarn deploy:installAppDependencies && node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CoffeeAndCode/whatdoeslambdasupport.com.git"
},
"keywords": [
"aws",
"lambda",
"node.js",
"javascript",
"support"
],
"author": "Coffee and Code <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/CoffeeAndCode/whatdoeslambdasupport.com/issues"
},
"homepage": "http://www.whatdoeslambdasupport.com",
"dependencies": {},
"devDependencies": {
"aws-sdk": "^2.32.0",
"dotenv": "^4.0.0",
"eslint": "^3.18.0",
"js-yaml": "^3.8.2",
"request": "^2.81.0"
}
}