-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.36 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
{
"name": "aws-billing-alerts",
"version": "0.0.2",
"description": "A simple AWS Lambda function that sends SNS alerts when your current month's bill changes.",
"homepage": "https://github.com/tdmalone/aws-billing-alerts#readme",
"repository": "git+https://github.com/tdmalone/aws-billing-alerts.git",
"main": "index.js",
"author": "Tim Malone <[email protected]>",
"license": "MIT",
"scripts": {
"lint": "cross-env DEBUG=eslint:cli-engine eslint --color --ignore-pattern '/coverage/' --ignore-pattern '/docs/' --ignore-pattern '!.eslintrc.js' \"**/*.js\"",
"fix": "yarn lint --fix",
"test": "yarn unit-tests && yarn docker-tests",
"unit-tests": "TESTING=true jest --verbose --coverage",
"docker-tests": "TESTING=true docker run --rm -e TESTING -e SNS_TOPIC -e BUCKET_NAME -e AWS_ACCESS_KEY_ID -e AWS_SECRET_ACCESS_KEY -e AWS_DEFAULT_REGION -v \"${PWD}\":/var/task lambci/lambda:nodejs6.10 index.handler \"$( cat tests/fixtures/sample-s3-event.json )\""
},
"keywords": [
"aws",
"lambda",
"sns",
"aws-billing"
],
"jest": {
"testMatch": [
"**/tests/**/*.js"
]
},
"dependencies": {
"aws-sdk": "^2.170.0",
"csv-parse": "^2.0.2"
},
"devDependencies": {
"cross-env": "^5.1.0",
"eslint": "^4.8.0",
"eslint-config-tdmalone": "^0.0.1",
"jest": "^21.2.1",
"jest-tobetype": "^1.1.0"
}
}