-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.81 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "@comicrelief/lambda-wrapper",
"version": "0.0.0-see.readme.for.semantic.release.process",
"description": "Lambda wrapper for all Comic Relief Serverless Projects",
"main": "dist/index.js",
"author": "Adam Clark",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/comicrelief/lambda-wrapper.git"
},
"files": [
"dist"
],
"scripts": {
"prepare": "yarn clean && yarn build",
"build": "tsc -p tsconfig-build.json",
"clean": "rm -rf dist",
"lint": "eslint src tests",
"test": "jest",
"test:types": "tsc -p tsconfig-type-test.json",
"coverage": "yarn test --coverage"
},
"devDependencies": {
"@comicrelief/eslint-config": "^2.0.3",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/async": "^3.2.24",
"@types/jest": "^29.5.12",
"@types/node": "14",
"@types/useragent": "^2.3.4",
"@types/uuid": "^9.0.8",
"@types/xml2js": "^0.4.14",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jsdoc": "^39.3.2",
"expect-type": "^0.18.0",
"jest": "^29.7.0",
"nyc": "^15.1.0",
"semantic-release": "^19.0.5",
"ts-jest": "29.1.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^4.9.5"
},
"dependencies": {
"@aws-sdk/client-lambda": "^3.540.0",
"@aws-sdk/client-s3": "^3.540.0",
"@aws-sdk/client-sqs": "^3.540.0",
"@lumigo/tracer": "^1.91.0",
"@sentry/node": "^6.19.7",
"@smithy/node-http-handler": "^2.5.0",
"@types/aws-lambda": "^8.10.134",
"alai": "1.0.3",
"axios": "^1.6.7",
"useragent": "2.3.0",
"uuid": "^9.0.1",
"validate.js": "0.13.1",
"winston": "^3.11.0",
"xml2js": "^0.6.2"
}
}