-
Notifications
You must be signed in to change notification settings - Fork 103
/
package.json
167 lines (167 loc) · 4.43 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
{
"name": "adblocker",
"author": {
"name": "Ghostery"
},
"type": "module",
"description": "Ghostery adblocker",
"contributors": [
{
"name": "Rémi Berson",
"email": "[email protected]"
},
{
"name": "Zhonghao Yu",
"email": "[email protected]"
},
{
"name": "Krzysztof Jan Modras",
"email": "[email protected]"
},
{
"name": "Raymond Hill",
"email": "[email protected]"
},
{
"name": "Eleni",
"email": "[email protected]"
},
{
"name": "ecnmst",
"email": "[email protected]"
},
{
"name": "Asif",
"email": "[email protected]"
},
{
"name": "Anton Lazarev",
"email": "[email protected]"
},
{
"name": "Andriy Kornatskyy",
"email": "[email protected]"
}
],
"license": "MPL-2.0",
"homepage": "https://github.com/ghostery/adblocker#readme",
"bugs": {
"url": "https://github.com/ghostery/adblocker/issues"
},
"private": true,
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/ghostery/adblocker.git"
},
"workspaces": [
"packages/*"
],
"scripts": {
"postinstall": "patch-package",
"lint": "lerna run --parallel lint",
"build": "lerna run build",
"test": "yarn workspaces foreach -A run test",
"clean": "lerna run --parallel clean && lerna clean --yes",
"release": "auto shipit -v",
"format-check": "prettier './packages/**/*.ts' --check",
"format-fix": "prettier './packages/**/*.ts' --write"
},
"devDependencies": {
"@eslint/js": "^9.3.0",
"@types/benchmark": "^2.1.3",
"@types/node": "^22.0.2",
"auto": "^11.0.5",
"benchmark": "^2.1.4",
"chalk": "^5.3.0",
"eslint": "^9.3.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"lerna": "^8.0.0",
"patch-package": "^8.0.0",
"prettier": "^3.0.3",
"tsx": "^4.16.2",
"typescript": "^5.5.2",
"typescript-eslint": "8.15.0"
},
"auto": {
"name": "Ghostery Adblocker Bot",
"email": "[email protected]",
"plugins": [
"npm"
],
"labels": [
{
"name": "PR: Breaking Change :boom:",
"description": "Increment major version when merged",
"changelogTitle": ":boom: Breaking Change",
"releaseType": "major",
"overwrite": true,
"color": "#e2372b"
},
{
"name": "PR: New Feature :rocket:",
"description": "Increment minor version when merged",
"changelogTitle": ":rocket: New Feature",
"releaseType": "minor",
"overwrite": true,
"color": "#2e449b"
},
{
"name": "PR: Performance :running_woman:",
"description": "Increment minor version when merged",
"changelogTitle": ":running_woman: Performance",
"releaseType": "minor",
"overwrite": true,
"color": "#ead99f"
},
{
"name": "PR: Bug Fix :bug:",
"description": "Increment patch version when merged",
"changelogTitle": ":bug: Bug Fix",
"releaseType": "patch",
"overwrite": true,
"color": "#56dd97"
},
{
"name": "PR: Polish :nail_care:",
"description": "Increment patch version when merged",
"changelogTitle": ":nail_care: Polish",
"releaseType": "patch",
"overwrite": true,
"color": "#a9bbe8"
},
{
"name": "PR: Internal :house:",
"description": "Changes only affect internals",
"changelogTitle": ":house: Internal",
"releaseType": "none",
"overwrite": true,
"color": "#5b1482"
},
{
"name": "PR: Docs :memo:",
"description": "Changes only affect documentation",
"changelogTitle": ":memo: Documentation",
"releaseType": "none",
"overwrite": true,
"color": "#d2f28a"
},
{
"name": "skip-release",
"description": "Preserve the current version when merged",
"releaseType": "skip",
"overwrite": true,
"color": "#e069cf"
},
{
"name": "PR: Dependencies :nut_and_bolt:",
"description": "Changes only update dependencies",
"changelogTitle": ":nut_and_bolt: Dependencies",
"releaseType": "none",
"overwrite": true,
"color": "#5dbdcc"
}
]
},
"packageManager": "[email protected]"
}