-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.72 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
{
"name": "@shutterstock/chunker",
"version": "1.0.0",
"description": "Calls a callback before size would be exceeded or when count limit is reached",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"publishConfig": {
"access": "public"
},
"keywords": [
"chunk",
"batch",
"buffer",
"blocking-queue",
"size-limit",
"kinesis",
"async",
"promise"
],
"scripts": {
"build": "tsc --build tsconfig.json && echo 'examples/\n*.tsbuildinfo' > dist/.npmignore",
"build:docs": "typedoc src/index.ts",
"example:aws-kinesis-writer": "KINESIS_STREAM_NAME=${KINESIS_STREAM_NAME:-chunker-test-stream} ts-node -r tsconfig-paths/register examples/aws-kinesis-writer.ts",
"test": "AWS_EMF_ENVIRONMENT=Local jest",
"lint": "eslint ./ --ext .ts --ext .tsx",
"lint-and-fix": "eslint ./ --ext .ts --ext .tsx --fix"
},
"files": [
"dist/",
"LICENSE.md",
"package.json"
],
"repository": {
"type": "git",
"url": "https://github.com/shutterstock/chunker.git"
},
"license": "MIT",
"dependencies": {
"@shutterstock/p-map-iterable": "^1.0.11"
},
"peerDependencies": {
"@shutterstock/p-map-iterable": "^1.0.11"
},
"devDependencies": {
"@aws-sdk/client-kinesis": "3.353.0",
"@types/jest": "29.5.2",
"@typescript-eslint/eslint-plugin": "5.59.11",
"@typescript-eslint/parser": "5.59.11",
"aws-sdk-client-mock": "2.1.1",
"eslint": "8.42.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-prettier": "4.2.1",
"jest": "29.5.0",
"lcov-parse": "1.0.0",
"prettier": "2.8.8",
"ts-jest": "29.1.0",
"ts-node": "10.9.1",
"tsconfig-paths": "4.2.0",
"typedoc": "0.24.8",
"typescript": "5.1.3"
}
}