generated from previewme/lambda-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.15 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
43
44
45
46
{
"name": "sns-notification-forwarder",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "[email protected]:previewme/sns-notification-forwarder.git"
},
"description": "Forwards SNS notifications to another lambda function",
"main": "index.js",
"scripts": {
"build": "tsc",
"pretest": "eslint -f json -o reports/eslint-report.json --ignore-path .gitignore .",
"test": "jest"
},
"keywords": [
"node",
"typescript",
"lambda"
],
"author": "PreviewMe Limited",
"license": "MIT",
"jestSonar": {
"reportPath": "reports"
},
"dependencies": {
"@types/async": "3.2.7",
"@types/aws-lambda": "8.10.80",
"aws-lambda": "1.0.6",
"aws-sdk": "2.952.0"
},
"devDependencies": {
"@types/jest": "26.0.24",
"@typescript-eslint/eslint-plugin": "4.28.4",
"@typescript-eslint/parser": "4.28.4",
"eslint": "7.31.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-jest": "24.4.0",
"eslint-plugin-prettier": "3.4.0",
"jest": "27.0.6",
"jest-sonar-reporter": "2.0.0",
"prettier": "2.3.2",
"ts-jest": "27.0.4",
"ts-node": "10.1.0",
"typescript": "4.3.5"
}
}