-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
62 lines (62 loc) · 1.58 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
{
"name": "jest-runner-prettier",
"version": "0.0.0-development",
"type": "module",
"description": "A prettier runner for Jest",
"main": "dist/index.js",
"repository": "https://github.com/keplersj/jest-runner-prettier",
"author": "Kepler Sticka-Jones <kepler@stickajones.org>",
"funding": {
"type": "github-sponsors",
"url": "https://github.com/sponsors/keplersj"
},
"license": "MIT",
"private": false,
"scripts": {
"build": "tsc",
"test": "npm run build; node --experimental-vm-modules node_modules/jest/bin/jest.js",
"prepack": "npm run build",
"prepare": "husky install"
},
"lint-staged": {
"*": "node --experimental-vm-modules node_modules/jest/bin/jest.js --bail --findRelatedTests"
},
"release": {
"verifyConditions": "@semantic-release/github"
},
"dependencies": {
"create-lite-jest-runner": "^1.0.2",
"emphasize": "^5.0.0",
"jest-diff": "^29.0.0"
},
"peerDependencies": {
"jest": ">= 27.0.0",
"prettier": ">= 1.8"
},
"devDependencies": {
"@commitlint/cli": "17.2.0",
"@commitlint/config-conventional": "17.2.0",
"@types/jest": "29.2.2",
"@types/node": "18.11.9",
"eslint": "8.27.0",
"eslint-config-starstuff": "1.5.14",
"husky": "8.0.3",
"jest": "29.3.1",
"jest-runner-eslint": "1.1.0",
"lint-staged": "13.0.3",
"prettier": "2.7.1",
"ts-jest": "29.0.3",
"typescript": "4.8.4"
},
"eslintConfig": {
"extends": "starstuff/auto",
"env": {
"node": true
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}