-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 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
53
54
55
56
57
58
59
{
"name": "@gtsopanoglou/babel-jest-boost",
"version": "0.1.22",
"description": "Babel plugin to boost jest performance by skipping intermediate imports",
"scripts": {
"format:check": "prettier . --check",
"format:fix": "prettier . --write",
"lint:check": "eslint",
"lint:fix": "eslint --fix --no-warn-ignored",
"lint:staged": "lint-staged",
"prepare": "husky",
"test": "jest",
"test:watch": "jest --watch"
},
"exports": {
".": "./package/index.js",
"./plugin": "./package/plugin/index.js",
"./config": "./package/config/index.js",
"./transformer": "./package/transformer/index.js"
},
"author": "George Tsopanoglou",
"license": "AGPL-3.0-or-later",
"devDependencies": {
"@babel/preset-env": "^7.25.3",
"@eslint/js": "^9.2.0",
"empty-npm-package": "^1.0.0",
"eslint": "^9.2.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.5.0",
"globals": "^15.1.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-expect-message": "^1.1.3",
"lint-staged": "^15.2.2",
"prettier": "3.2.5"
},
"dependencies": {
"app-root-dir": "^1.0.2",
"md5": "^2.3.0"
},
"peerDepedenceis": {
"babel-jest": "*",
"jest": "*",
"jest-config": "*",
"resolve": "*"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/gtsop/babel-jest-boost.git"
},
"keywords": [
"babel",
"jest"
],
"bugs": {
"url": "https://github.com/gtsop/babel-jest-boost/issues"
},
"homepage": "https://github.com/gtsop/babel-jest-boost#readme"
}