-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 1.71 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
63
64
65
66
67
68
69
{
"name": "jest-dynamodb-local-docker",
"version": "3.1.1",
"description": "Jest preset for easily running tests using DynamoDB local",
"main": "index.js",
"engines": {
"node": ">=20.11.1"
},
"scripts": {
"prepare": "husky install",
"lint": "eslint . --ext. js",
"format": "prettier --write **/*.{js{,on},md}",
"typecheck": "tsc",
"pretest": "npm run lint && npm run format && npm run typecheck",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danmactough/jest-dynamodb-local-docker.git"
},
"keywords": [
"dynamodb",
"jest",
"jest-preset",
"jest-environment",
"docker"
],
"author": "Dan MacTough <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/danmactough/jest-dynamodb-local-docker/issues"
},
"homepage": "https://github.com/danmactough/jest-dynamodb-local-docker#readme",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.12.12",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-node": "^11.1.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^10.4.0",
"prettier": "^2.8.8",
"typescript": "^5.4.5"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.609.0",
"@aws-sdk/lib-dynamodb": "^3.609.0",
"@smithy/node-http-handler": "^3.1.2",
"debug": "^4.2.0",
"jest-environment-node": "^29.7.0",
"signal-exit": "^3.0.7"
},
"prettier": {
"singleQuote": true
},
"lint-staged": {
"*.{json,y{,a}ml,md}": [
"prettier --write"
],
"*.js": [
"eslint --fix",
"prettier --write"
]
},
"jest": {
"preset": "./jest-preset.js"
}
}