-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
177 lines (177 loc) · 4.45 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
{
"name": "jest-package-audit",
"version": "5.0.2",
"description": "Filter and retry yarn/npm audit command with Jest.",
"keywords": [
"jest",
"matcher",
"package",
"audit",
"npm audit",
"yarn audit",
"testing",
"assertion"
],
"main": "build/index.js",
"files": [
"/build"
],
"repository": "git@github.com:xeroxinteractive/jest-package-audit.git",
"author": "Andrew Leedham <andrew.leedham@xerox.com>",
"license": "MIT",
"scripts": {
"build": "yarn run build:clean && tsc --project ./tsconfig.build.json",
"build:clean": "rm -rf ./build",
"test": "jest",
"lint": "eslint ./source/ --ext .ts",
"type-check": "tsc",
"format": "yarn run lint --fix",
"deploy": "auto shipit",
"prepublishOnly": "yarn run build"
},
"engines": {
"node": ">=14",
"npm": ">=5.10",
"yarn": ">=1.12",
"pnpm": ">=7"
},
"browserslist": [
"current node"
],
"prettier": "@xerox/prettier-config",
"eslintConfig": {
"extends": [
"@xerox",
"@xerox/eslint-config/typescript",
"@xerox/eslint-config/jest"
],
"rules": {
"jest/no-mocks-import": "off"
}
},
"release": {
"extends": "@xerox/semantic-release-config/npm-next"
},
"publishConfig": {
"access": "public"
},
"jest": {
"preset": "ts-jest",
"modulePathIgnorePatterns": [
"package.json",
"package-lock.json",
"yarn.lock"
]
},
"peerDependencies": {
"jest": ">=20"
},
"devDependencies": {
"@auto-it/slack": "11.0.4",
"@types/jest": "29.5.7",
"@types/node": "18.18.8",
"@xerox/eslint-config": "5.0.6",
"@xerox/prettier-config": "4.0.3",
"auto": "11.0.4",
"cli-table3": "0.6.3",
"eslint": "8.52.0",
"jest": "29.7.0",
"mock-spawn": "0.2.6",
"prettier": "3.0.3",
"ts-jest": "29.1.1",
"typescript": "5.2.2"
},
"dependencies": {
"@antfu/ni": "0.21.8",
"@pnpm/audit": "7.0.19",
"execa": "5.1.1",
"pkg-dir": "5.0.0"
},
"resolutions": {
"set-value@<2.0.1": "^2.0.1",
"mem@<4.0.0": "^4.0.0",
"https-proxy-agent@<2.2.3": "^2.2.3",
"handlebars@<4.5.2": "^4.5.2",
"acorn@<7.1.1": "^7.1.1",
"kind-of@<6.0.3": "^6.0.3",
"minimist@<1.2.3": "^1.2.3",
"yargs-parser@<13.1.2": "^13.1.2",
"yargs-parser@>=15.0.0 <15.0.1": "^15.0.1",
"yargs-parser@>=18.0.0 <18.1.2": "^18.1.2",
"yargs-parser@>=20.0.0 <20.2.0": "^20.2.0",
"@types/node": "18.18.8",
"dot-prop@<5.1.1": "^5.1.1",
"json5@>=2.0.0 <2.2.2": "^2.2.2"
},
"auto": {
"baseBranch": "release",
"onlyPublishWithReleaseLabel": true,
"plugins": [
"npm",
"slack",
"released"
],
"labels": [
{
"name": "change: major",
"changelogTitle": "Breaking Change",
"description": "A major breaking change",
"releaseType": "major"
},
{
"name": "change: feature",
"changelogTitle": "Feature",
"description": "Adds a new feature or improves on an existing one",
"releaseType": "minor"
},
{
"name": "change: fix",
"changelogTitle": "Fix",
"description": "Fixes a bug",
"releaseType": "patch"
},
{
"name": "change: documentation",
"changelogTitle": "Documentation",
"description": "Changes only affect the documentation",
"releaseType": "patch"
},
{
"name": "change: refactor",
"changelogTitle": "Refactor",
"description": "Changes that introduce no new features or fixes",
"releaseType": "patch"
},
{
"name": "change: performance",
"changelogTitle": "Performance",
"description": "Improve performance of an existing feature",
"releaseType": "patch"
},
{
"name": "change: dependencies",
"changelogTitle": "Dependencies",
"description": "Updates to dependencies only",
"releaseType": "patch"
},
{
"name": "change: chore",
"changelogTitle": "Chore",
"description": "Changes around build process",
"releaseType": "none"
},
{
"name": "change: tests",
"changelogTitle": "Tests",
"description": "Add or improve existing tests",
"releaseType": "none"
},
{
"name": "release",
"description": "Create a release when this pr is merged",
"releaseType": "release"
}
]
},
"packageManager": "pnpm@8.10.2"
}