forked from justengland/phantom-lambda-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.35 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
42
{
"name": "html-pdf-lambda-template",
"version": "1.0.0",
"description": "A template for automated deployment of html-pdf on AWS Lambda",
"main": "index.js",
"repository": {
"type": "git",
"url": "[email protected]:donpedro/phantom-lambda-template.git"
},
"author": "jengland",
"license": "MIT",
"bugs": {
"url": "https://github.com/donpedro/phantom-lambda-template/issues"
},
"homepage": "https://github.com/donpedro/phantom-lambda-template",
"dependencies": {
"html-pdf": "^2.2.0",
"mocha": "^3.2.0"
},
"devDependencies": {
"aws-sdk": "^2.7.8"
},
"scripts": {
"deploy-pipeline": "aws cloudformation deploy --template-file pipeline.yaml --stack-name \"phantom-pipeline\" --capabilities CAPABILITY_IAM",
"package": "aws cloudformation package --template-file serverless.yaml --s3-bucket $BUILD_BUCKET --s3-prefix \"phantom\" --output-template-file serverless-output.yaml",
"publish": "aws cloudformation deploy --template-file serverless-output.yaml --stack-name \"phantom\" --capabilities CAPABILITY_IAM",
"deploy": "npm run package && npm run publish",
"test": "mocha test/*",
"integration-test": "mocha test/*"
},
"keywords": [
"html-pdf",
"phantomjs",
"aws",
"lambda",
"serverless",
"aws development tools",
"codepipeline",
"codebuild",
"phantomjs-prebuilt"
]
}