forked from a-h/hde
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.55 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
{
"name": "@rooster212/event-driven-dynamodb-rules-engine",
"version": "1.5.0",
"description": "Events and rules engine for use with DynamoDB.",
"main": "index.js",
"scripts": {
"build": "tsc",
"custom-publish": "./publish.sh",
"test": "npx jest",
"lint": "npx eslint . --ext .js,.jsx,.ts,.tsx",
"coverage": "npx jest --collect-coverage",
"dynamodb": "docker run --rm -p 8000:8000 -v $(pwd)/dbstore:/dbstore amazon/dynamodb-local -jar DynamoDBLocal.jar -sharedDb -dbPath /dbstore"
},
"keywords": [
"dynamodb",
"events"
],
"author": "rooster212",
"license": "ISC",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/rooster212/event-driven-dynamodb-rules-engine.git"
},
"publishConfig": {
"@rooster212:registry": "https://npm.pkg.github.com"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "3.577.0",
"@aws-sdk/client-eventbridge": "3.577.0",
"@aws-sdk/lib-dynamodb": "3.577.0",
"@aws-sdk/util-dynamodb": "3.577.0"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
"@types/aws-lambda": "^8.10.137",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"aws-cdk": "2.164.1",
"aws-cdk-lib": "2.164.1",
"aws-sdk-client-mock": "^4.0.0",
"aws-sdk-client-mock-jest": "^4.0.0",
"constructs": "^10.3.0",
"esbuild": "^0.21.3",
"eslint": "^7.21.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}