-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.31 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.31 KB
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
{
"name": "step-function-iterator",
"version": "0.0.1",
"description": "Let's say you need to iterate over huge dataset and perform a piece of work for each record. Let's assume that you need to limit how fast you iterate. It may be because you rely on calls to external service and number of requests per day are capped. Or maybe you just need to care about how much resources you use and not make denial service attack on yourself ;)",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "tsc -p tsconfig.build.json",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rumblefishdev/step-function-iterator.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/rumblefishdev/step-function-iterator/issues"
},
"homepage": "https://github.com/rumblefishdev/step-function-iterator#readme",
"dependencies": {
"@types/aws-lambda": "^8.10.93",
"@types/aws-sdk": "^2.7.0",
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"aws-lambda": "^1.0.7",
"aws-sdk": "^2.1115.0",
"eslint": "^8.13.0",
"jest": "^27.5.1",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3",
"wait-for-expect": "^3.0.2",
"yaml-cfn": "^0.3.1"
}
}