-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.42 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
{
"name": "@lifeomic/delta",
"version": "0.0.0",
"description": "Tools for working with data streams in AWS Lambda",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"author": "LifeOmic <development@lifeomic.com>",
"repository": {
"type": "git",
"url": "https://github.com/lifeomic/delta.git"
},
"keywords": [
"aws",
"lambda",
"streams"
],
"main": "index.js",
"scripts": {
"lint": "eslint .",
"test": "jest",
"build": "node build.js"
},
"devDependencies": {
"@aws-sdk/client-dynamodb": "^3.369.0",
"@lifeomic/eslint-config-standards": "^3.2.3",
"@lifeomic/jest-config": "^1.1.2",
"@lifeomic/typescript-config": "^3.1.0",
"@types/bunyan": "^1.8.11",
"@types/jest": "^27.4.1",
"@types/lodash": "^4.14.195",
"@types/uuid": "^8.3.4",
"bunyan": "^1.8.15",
"conventional-changelog-conventionalcommits": "^4.6.3",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^27.5.1",
"prettier": "^2.5.1",
"semantic-release": "^19.0.2",
"ts-jest": "^27.1.3",
"typescript": "^5.3.2",
"zod": "^3.21.4"
},
"dependencies": {
"@aws-sdk/util-dynamodb": "^3.369.0",
"@types/aws-lambda": "^8.10.92",
"aggregate-error": "^3.0.0",
"lodash": "^4.17.21",
"p-map": "^4.0.0",
"uuid": "^8.3.2"
},
"peerDependencies": {
"bunyan": "^1.8"
}
}