-
-
Notifications
You must be signed in to change notification settings - Fork 168
/
package.json
220 lines (220 loc) · 5.34 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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
{
"name": "metascraper",
"homepage": "https://github.com/microlinkhq/metascraper#readme",
"version": "",
"author": {
"email": "[email protected]",
"name": "microlink.io",
"url": "https://microlink.io"
},
"contributors": [
{
"name": "Kiko Beats",
"email": "[email protected]"
},
{
"name": "Gabe O'Leary",
"email": "[email protected]"
},
{
"name": "David Eriksson",
"email": "[email protected]"
},
{
"name": "Jean-Baptiste Richardet",
"email": "[email protected]"
},
{
"name": "Pau Ramon Revilla",
"email": "[email protected]"
},
{
"name": "Mac Chaffee",
"email": "[email protected]"
},
{
"name": "Shawn Dempsey",
"email": "[email protected]"
},
{
"name": "Slava",
"email": "[email protected]"
},
{
"name": "Stiliyan Ivanov",
"email": "[email protected]"
},
{
"name": "Viscoci",
"email": "[email protected]"
},
{
"name": "Henry Bao",
"email": "[email protected]"
},
{
"name": "Alden Quimby",
"email": "[email protected]"
},
{
"name": "Amine Bouyarmane",
"email": "[email protected]"
},
{
"name": "C. Bess",
"email": "[email protected]"
},
{
"name": "Dave Nicolson",
"email": "[email protected]"
},
{
"name": "Jesse Rogers",
"email": "[email protected]"
},
{
"name": "Jonas Rottmann",
"email": "[email protected]"
},
{
"name": "Han Yeong-woo",
"email": "[email protected]"
},
{
"name": "Adam Trager",
"email": "[email protected]"
},
{
"name": "Iheb KHEMISSI",
"email": "[email protected]"
},
{
"name": "Lemuel Flores",
"email": "[email protected]"
},
{
"name": "Kristianeaw",
"email": "[email protected]"
},
{
"name": "Laurent Goderre",
"email": "[email protected]"
},
{
"name": "Omar Diab",
"email": "[email protected]"
},
{
"name": "Zander Martineau",
"email": "[email protected]"
},
{
"name": "Nikola Ristic",
"email": "[email protected]"
},
{
"name": "Robin Millette",
"email": "[email protected]"
},
{
"name": "Sampo Juustila",
"email": "[email protected]"
},
{
"name": "Steven Frostwick",
"email": "[email protected]"
},
{
"name": "Shivam Dua",
"email": "[email protected]"
},
{
"name": "Wyatt Johnson",
"email": "[email protected]"
},
{
"name": "Nico Domino",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/microlinkhq/metascraper.git"
},
"bugs": {
"url": "https://github.com/microlinkhq/metascraper/issues"
},
"devDependencies": {
"@commitlint/cli": "latest",
"@commitlint/config-conventional": "latest",
"@ksmithut/prettier-standard": "latest",
"@lerna-lite/cli": "latest",
"@lerna-lite/publish": "latest",
"@lerna-lite/run": "latest",
"browser-sync": "latest",
"c8": "latest",
"concurrently": "latest",
"cssnano": "latest",
"cssnano-preset-advanced": "latest",
"finepack": "latest",
"git-authors-cli": "latest",
"gulp": "4",
"gulp-concat": "latest",
"gulp-postcss": "latest",
"gulp-uglify": "latest",
"nano-staged": "latest",
"npm-check-updates": "latest",
"postcss": "latest",
"postcss-focus": "latest",
"simple-git-hooks": "latest",
"standard": "latest",
"standard-markdown": "latest"
},
"engines": {
"node": ">= 16"
},
"scripts": {
"build": "gulp build",
"clean": "pnpm --recursive --parallel exec -- rm -rf node_modules",
"contributors": "npm run contributors:add && npm run contributors:commit",
"contributors:add": "pnpm --recursive --parallel exec -- finepack",
"contributors:commit": "(git-authors-cli && finepack && git add package.json && git commit -m 'build: contributors' --no-verify) || true",
"coverage": "c8 report --reporter=text-lcov > coverage/lcov.info",
"dev": "concurrently \"gulp\" \"npm run dev:server\"",
"dev:server": "browser-sync start --server --files \"index.html, README.md, static/**/*.(css|js)\"",
"lint": "standard-markdown README.md && standard",
"pretest": "npm run lint",
"release": "lerna publish --yes --sort --conventional-commits -m \"chore(release): %s\" --create-release github",
"test": "c8 lerna run test",
"update": "pnpm --recursive --parallel exec ncu -u",
"update:check": "pnpm --recursive --parallel exec ncu -errorLevel 2"
},
"private": true,
"license": "MIT",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"body-max-line-length": [
0
]
}
},
"nano-staged": {
"*.js": [
"prettier-standard",
"standard --fix"
],
"*.md": [
"standard-markdown"
],
"package.json": [
"finepack"
]
},
"simple-git-hooks": {
"commit-msg": "npx commitlint --edit",
"pre-commit": "npx nano-staged"
}
}