This repository has been archived by the owner on Feb 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
125 lines (125 loc) · 2.75 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "jest-docblock-runner",
"version": "1.3.5",
"description": "Run specific Jest tests by tagging your tests with docBlock pragmas.",
"repository": "https://[email protected]/ryparker/jest-docblock-runner.git",
"author": "Ryan Parker <[email protected]>",
"license": "MIT",
"files": [
"dist",
"patches"
],
"main": "dist",
"types": "dist/index.d.ts",
"scripts": {
"postinstall": "patch-package",
"build": "yarn clean && tsc",
"test": "yarn build && jest",
"lint": "xo src",
"fix": "xo src --fix",
"clean": "rimraf dist"
},
"jest": {
"roots": [
"<rootDir>/src"
],
"runner": "./dist/index",
"testEnvironment": "node",
"testRunner": "jest-circus/runner",
"preset": "ts-jest",
"verbose": true
},
"xo": {
"rules": {
"max-params": 0
},
"extends": [
"plugin:jest/recommended"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn test"
}
},
"lint-staged": {
"./src/**/*": [
"xo src --fix"
]
},
"release": {
"branches": [
"main"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits",
"config": "./node_modules/cz-conventional-changelog"
}
],
[
"@semantic-release/changelog",
{
"changelogTitle": "# Changelog"
}
],
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github"
]
},
"resolutions": {
"mem": ">=4.0.0",
"yargs-parser": "^13.1.2"
},
"dependencies": {
"@types/jest": "^26.0.19",
"jest-docblock": "^26.0.0",
"jest-runner": "^26.6.3",
"patch-package": "^6.2.2",
"postinstall-postinstall": "^2.1.0"
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/node": "^14.14.14",
"commitizen": "^4.2.2",
"conventional-changelog-conventionalcommits": "^4.5.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "^7.16.0",
"eslint-config-xo-typescript": "^0.37.0",
"eslint-plugin-jest": "^24.1.3",
"husky": "^4.3.6",
"jest": "^26.6.3",
"jest-circus": "^26.6.3",
"lint-staged": "^10.5.3",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"semantic-release": "^17.3.0",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3",
"xo": "^0.36.1"
},
"engines": {
"node": ">=12.x"
},
"keywords": [
"jest",
"tag",
"runner",
"docBlock",
"pragma",
"circus",
"collect"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}