-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.21 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
{
"name": "sqs-huge-message",
"version": "0.2.2",
"description": "A service to send and receive huge (and not huge) payload to SQS with Lambda.",
"keywords": [
"sqs",
"lambda",
"aws"
],
"tags": [
"sqs",
"lambda",
"aws"
],
"main": "src/sqs-huge-msg.ts",
"scripts": {
"test": "npx jest --passWithNoTests --noStackTrace --runInBand",
"test:unit": "npm test -- --watchAll -c jest-unit-config.js"
},
"devDependencies": {
"@types/jest": "^26.0.3",
"@types/node": "^14.0.14",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"eslint": "^7.3.1",
"eslint-config-standard-with-typescript": "^18.0.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^26.1.0",
"ntl": "^5.1.0",
"ts-jest": "^26.1.1",
"typescript": "^3.9.5"
},
"author": {
"name": "Leandro Simões",
"email": "lesimoes0@gmail.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lesimoes/sqs-huge-message"
},
"license": "Apache-2.0",
"dependencies": {
"aws-sdk": "^2.834.0",
"sucrase": "^3.17.0",
"uuid": "^8.3.2"
}
}