-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.08 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
{
"name": "slides-processor",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"preinstall": "node scripts/install.js",
"package": "aws cloudformation package --template-file template.yaml --output-template-file output.yaml --s3-bucket $npm_package_config_bucket_name",
"deploy": "aws cloudformation deploy --template-file output.yaml --stack-name slides-processor --capabilities CAPABILITY_IAM",
"qd": "npm run package && npm run deploy",
"lint": "eslint **/*.js",
"pretest": "npm run lint",
"test": "jest"
},
"config": {
"bucket_name": "desole-deploy-helper-s"
},
"repository": {
"type": "git",
"url": "git+https://github.com/effortless-serverless/slides-processor.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/effortless-serverless/slides-processor/issues"
},
"homepage": "https://github.com/effortless-serverless/slides-processor#readme",
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-defaults": "^9.0.0",
"jest": "^23.1.0"
}
}