-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
90 lines (90 loc) · 1.92 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@thadeu/jest-localstack-preset",
"version": "1.0.10",
"main": "jest-preset.js",
"repository": "git@github.com:thadeu/jest-localstack-preset.git",
"homepage": "https://github.com/thadeu/jest-localstack-preset#README",
"bugs": {
"url": "https://github.com/thadeu/jest-localstack-preset/ISSUES"
},
"engines": {
"node": ">= 12"
},
"keywords": [
"jest",
"aws",
"localstack",
"jest preset",
"jest environment",
"jest localstack preset",
"jest dynamo localstack",
"jest dynamo"
],
"author": {
"name": "Thadeu Esteves",
"email": "tadeuu@gmail.com",
"url": "https://github.com/thadeu"
},
"files": [
"*",
"!example/",
"!spec/",
"!test/",
"!node_modules/",
"!.github/"
],
"jest": {
"preset": "./jest-preset.js",
"testPathIgnorePatterns": [
"./example/"
]
},
"publishConfig": {
"access": "public"
},
"scripts": {
"coverage": "jest --coverage",
"lint": "eslint . --fix",
"test": "cross-env LOCALSTACK_DEBUG=false jest . --runInBand --detectOpenHandles"
},
"peerDependencies": {
"aws-sdk": "^2.x.x"
},
"dependencies": {
"cwd": "0.10.0",
"dockerode": "^3.3.2",
"ora": "^5"
},
"devDependencies": {
"@types/node": "^18.0.6",
"aws-sdk": "^2",
"cross-env": "^5.2.1",
"eslint": "^6.4.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-jest": "^22.17.0",
"eslint-plugin-jest-formatting": "^1.1.0",
"eslint-plugin-json-format": "^2.0.1",
"eslint-plugin-prettier": "^3.1.1",
"husky": "3.0.5",
"jest": "24.9.0",
"lint-staged": "9.2.5",
"prettier": "^1.18.2",
"typescript": "4.6"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.{html,json,md,yml}": [
"prettier --write",
"git add"
]
},
"license": "MIT"
}