-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.01 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
{
"name": "aws-fanout",
"version": "2.1.0",
"license": "MIT",
"description": "A library wrapping SNS and SQS to allow for human readable names when using a fanout technique",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"precommit": "pkg-precommit",
"test": "pkg-test",
"build": "pkg-build",
"lint": "pkg-lint",
"tidy": "pkg-tidy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mishguruorg/aws-fanout"
},
"keywords": [
"AWS",
"SQS",
"SNS",
"event",
"receive",
"publish",
"subscribe"
],
"author": "Mish Guru <[email protected]>",
"bugs": {
"url": "https://github.com/mishguruorg/aws-fanout/issues"
},
"devDependencies": {
"@mishguru/package": "^7.7.0",
"sinon": "^7.4.1",
"timekeeper": "2.2.0"
},
"dependencies": {
"aws-sdk": "^2.517.0",
"bottleneck": "^2.19.5",
"common-prefix": "^1.1.0",
"mem": "^5.1.1",
"stu": "3.1.0"
},
"engines": {
"node": ">= 11.15.0"
}
}