-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.45 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": "cfn-annex",
"version": "1.0.0",
"description": "cfn-annex is a set of tested helper functions for AWS CloudFormation stacks, implemented as an AWS Lambda custom resource.",
"main": "lambda_function/index.js",
"scripts": {
"start": "mocha -R spec",
"deploy": "aws cloudformation package --template-file cfn-annex.yml --s3-bucket $npm_config_s3bucket --output-template-file cfn-annex-deploy.yml && aws cloudformation deploy --template-file cfn-annex-deploy.yml --stack-name ${npm_config_stackname:=cfn-annex} --capabilities CAPABILITY_IAM",
"deploy:test": "aws cloudformation deploy --template-file test/test-template.yml --stack-name ${npm_config_stackname:=cfn-annex-test} --parameter-overrides FunctionName=cfn-annex EnableDebug=true",
"lint": "eslint '*/*.js'",
"test": "mocha -R spec"
},
"author": "Alex Gibson",
"license": "Apache-2.0",
"devDependencies": {
"aws-sdk": "2.7.10",
"eslint": "^3.12.2",
"eslint-config-airbnb-base": "^11.0.0",
"eslint-plugin-import": "^2.2.0",
"mocha": "^3.2.0",
"nock": "^9.0.2"
},
"repository": {
"type": "git",
"url": "git://github.com/alexgibs/cfn-annex.git"
},
"eslintConfig": {
"env": {
"node": true,
"mocha": true
},
"extends": "eslint-config-airbnb-base",
"rules": {
"no-console": "off",
"strict": "off",
"max-len": "off",
"import/no-extraneous-dependencies": "off",
"no-bitwise": "off"
}
}
}