-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.48 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.48 KB
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
{
"name": "jest-mysql",
"version": "2.0.3",
"description": "User friendly preset configuration for Jest & MySQL setup",
"scripts": {
"test": "jest --runInBand --forceExit",
"bump-version": "npm version --commit-hooks=false --git-tag-version=false --force"
},
"repository": "Daniel-Yonkov/jest-mysql.git",
"keywords": [
"jest",
"jest preset",
"jest mysql",
"mysql preset",
"mysql jest",
"mysql"
],
"author": "Daniel Yonkov <daniel.yonkov@gmail.com>",
"license": "MIT",
"bugs": "https://github.com/Daniel-Yonkov/jest-mysql/issues",
"homepage": "https://github.com/Daniel-Yonkov/jest-mysql#readme",
"engines": {
"node": ">= 16"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"dependencies": {
"cwd": "^0.10.0",
"debug": "^4.2.0"
},
"peerDependencies": {
"jest": "29.x.x",
"mysql": "2.x.x"
},
"devDependencies": {
"@babel/cli": "^7.22.15",
"@babel/core": "^7.24.7",
"@babel/eslint-parser": "^7.22.15",
"@babel/preset-env": "^7.24.7",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.39.1",
"babel-jest": "^30.2.0",
"core-js": "^3.32.2",
"eslint": "^9.4.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.0.0",
"husky": "^9.1.5",
"jest": "^29.0.1",
"lint-staged": "^16.2.7",
"mysql": "^2.18.1",
"prettier": "^3.0.3"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,json,md}": "prettier --write"
}
}