This repository has been archived by the owner on Aug 5, 2022. It is now read-only.
forked from shelfio/jest-dynamodb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.48 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
70
71
72
73
74
{
"name": "@stedi/jest-dynamodb",
"version": "1.7.2",
"description": "Run your tests using Jest & DynamoDB local",
"keywords": [
"dynamodb",
"dynamodb local",
"jest",
"jest environment",
"jest preset"
],
"repository": "stedi/jest-dynamodb",
"license": "MIT",
"author": {
"name": "Vlad Holubiev",
"email": "[email protected]",
"url": "shelf.io"
},
"files": [
"environment.js",
"jest-preset.js",
"setup.js",
"teardown.js"
],
"scripts": {
"coverage": "jest --coverage",
"lint": "eslint . --ext .js,.ts,.json --fix",
"lint:ci": "eslint . --ext .js,.ts,.json",
"test": "export ENVIRONMENT=local && jest . --runInBand"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{html,md,yml}": [
"prettier --write",
"git add"
],
"*.{js,json}": [
"eslint --fix",
"git add"
]
},
"prettier": "@shelf/prettier-config",
"jest": {
"preset": "./jest-preset.js"
},
"dependencies": {
"cwd": "0.10.0",
"debug": "4.1.1",
"dynamodb-local": "0.0.31"
},
"devDependencies": {
"@shelf/eslint-config": "0.17.0",
"@shelf/prettier-config": "0.0.7",
"aws-sdk": "2.631.0",
"eslint": "7.3.0",
"husky": "4.2.5",
"jest": "26.0.1",
"lint-staged": "10.2.11",
"prettier": "2.0.5"
},
"peerDependencies": {
"aws-sdk": "2.x.x"
},
"engines": {
"node": ">=8"
},
"publishConfig": {
"access": "public"
}
}