protobufjs 6.11.4 → 6.11.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cli/node_modules/.package-lock.json +86 -32
- package/cli/node_modules/@babel/parser/package.json +66 -30
- package/cli/node_modules/@types/linkify-it/package.json +65 -36
- package/cli/node_modules/@types/markdown-it/package.json +67 -39
- package/cli/node_modules/@types/mdurl/package.json +53 -21
- package/cli/node_modules/acorn/package.json +48 -17
- package/cli/node_modules/acorn-jsx/package.json +42 -11
- package/cli/node_modules/argparse/package.json +52 -17
- package/cli/node_modules/bluebird/package.json +65 -38
- package/cli/node_modules/brace-expansion/index.js +14 -12
- package/cli/node_modules/brace-expansion/package.json +4 -1
- package/cli/node_modules/catharsis/package.json +44 -10
- package/cli/node_modules/deep-is/.travis.yml +5 -0
- package/cli/node_modules/deep-is/LICENSE +22 -0
- package/cli/node_modules/deep-is/README.markdown +70 -0
- package/cli/node_modules/deep-is/example/cmp.js +11 -0
- package/cli/node_modules/deep-is/index.js +102 -0
- package/cli/node_modules/deep-is/package.json +58 -0
- package/cli/node_modules/deep-is/test/NaN.js +16 -0
- package/cli/node_modules/deep-is/test/cmp.js +23 -0
- package/cli/node_modules/deep-is/test/neg-vs-pos-0.js +15 -0
- package/cli/node_modules/entities/package.json +95 -60
- package/cli/node_modules/escape-string-regexp/package.json +84 -41
- package/cli/node_modules/escodegen/escodegen.js +25 -66
- package/cli/node_modules/escodegen/package.json +11 -13
- package/cli/node_modules/esprima/package.json +82 -54
- package/cli/node_modules/estraverse/estraverse.js +1 -24
- package/cli/node_modules/estraverse/package.json +1 -1
- package/cli/node_modules/esutils/package.json +52 -21
- package/cli/node_modules/fast-levenshtein/LICENSE.md +25 -0
- package/cli/node_modules/fast-levenshtein/README.md +104 -0
- package/cli/node_modules/fast-levenshtein/levenshtein.js +136 -0
- package/cli/node_modules/fast-levenshtein/package.json +39 -0
- package/cli/node_modules/fs.realpath/package.json +52 -16
- package/cli/node_modules/graceful-fs/package.json +57 -25
- package/cli/node_modules/inflight/package.json +44 -15
- package/cli/node_modules/inherits/package.json +44 -12
- package/cli/node_modules/js2xmlparser/package.json +94 -62
- package/cli/node_modules/klaw/package.json +53 -23
- package/cli/node_modules/levn/LICENSE +22 -0
- package/cli/node_modules/levn/README.md +196 -0
- package/cli/node_modules/levn/lib/cast.js +298 -0
- package/cli/node_modules/levn/lib/coerce.js +285 -0
- package/cli/node_modules/levn/lib/index.js +22 -0
- package/cli/node_modules/levn/lib/parse-string.js +113 -0
- package/cli/node_modules/levn/lib/parse.js +102 -0
- package/cli/node_modules/levn/package.json +47 -0
- package/cli/node_modules/linkify-it/package.json +58 -23
- package/cli/node_modules/lodash/package.json +61 -10
- package/cli/node_modules/markdown-it/package.json +68 -33
- package/cli/node_modules/markdown-it-anchor/package.json +72 -30
- package/cli/node_modules/marked/package.json +87 -52
- package/cli/node_modules/mdurl/package.json +44 -9
- package/cli/node_modules/minimatch/README.md +37 -0
- package/cli/node_modules/minimatch/minimatch.js +160 -102
- package/cli/node_modules/minimatch/package.json +2 -2
- package/cli/node_modules/mkdirp/package.json +56 -22
- package/cli/node_modules/once/package.json +48 -14
- package/cli/node_modules/optionator/CHANGELOG.md +56 -0
- package/cli/node_modules/optionator/LICENSE +22 -0
- package/cli/node_modules/optionator/README.md +238 -0
- package/cli/node_modules/optionator/lib/help.js +260 -0
- package/cli/node_modules/optionator/lib/index.js +465 -0
- package/cli/node_modules/optionator/lib/util.js +54 -0
- package/cli/node_modules/optionator/package.json +44 -0
- package/cli/node_modules/prelude-ls/CHANGELOG.md +99 -0
- package/cli/node_modules/prelude-ls/LICENSE +22 -0
- package/cli/node_modules/prelude-ls/README.md +15 -0
- package/cli/node_modules/prelude-ls/lib/Func.js +65 -0
- package/cli/node_modules/prelude-ls/lib/List.js +686 -0
- package/cli/node_modules/prelude-ls/lib/Num.js +130 -0
- package/cli/node_modules/prelude-ls/lib/Obj.js +154 -0
- package/cli/node_modules/prelude-ls/lib/Str.js +92 -0
- package/cli/node_modules/prelude-ls/lib/index.js +178 -0
- package/cli/node_modules/prelude-ls/package.json +52 -0
- package/cli/node_modules/requizzle/package.json +52 -21
- package/cli/node_modules/source-map/package.json +197 -54
- package/cli/node_modules/strip-json-comments/package.json +80 -45
- package/cli/node_modules/tmp/README.md +47 -21
- package/cli/node_modules/tmp/lib/tmp.js +209 -147
- package/cli/node_modules/tmp/package.json +73 -37
- package/cli/node_modules/type-check/LICENSE +22 -0
- package/cli/node_modules/type-check/README.md +210 -0
- package/cli/node_modules/type-check/lib/check.js +126 -0
- package/cli/node_modules/type-check/lib/index.js +16 -0
- package/cli/node_modules/type-check/lib/parse-type.js +196 -0
- package/cli/node_modules/type-check/package.json +40 -0
- package/cli/node_modules/uc.micro/package.json +45 -9
- package/cli/node_modules/underscore/package.json +95 -61
- package/cli/node_modules/word-wrap/LICENSE +21 -0
- package/cli/node_modules/word-wrap/README.md +201 -0
- package/cli/node_modules/word-wrap/index.d.ts +50 -0
- package/cli/node_modules/word-wrap/index.js +61 -0
- package/cli/node_modules/word-wrap/package.json +77 -0
- package/cli/node_modules/wrappy/package.json +46 -16
- package/cli/node_modules/xmlcreate/package.json +87 -55
- package/cli/package-lock.json +842 -0
- package/cli/package.json +1 -1
- package/dist/light/protobuf.js +3 -2
- package/dist/light/protobuf.js.map +1 -1
- package/dist/light/protobuf.min.js +3 -3
- package/dist/light/protobuf.min.js.map +1 -1
- package/dist/minimal/protobuf.js +2 -2
- package/dist/minimal/protobuf.min.js +3 -3
- package/dist/minimal/protobuf.min.js.map +1 -1
- package/dist/protobuf.js +3 -2
- package/dist/protobuf.js.map +1 -1
- package/dist/protobuf.min.js +3 -3
- package/dist/protobuf.min.js.map +1 -1
- package/package.json +1 -1
- package/src/type.js +1 -0
- package/cli/node_modules/rimraf/CHANGELOG.md +0 -65
- package/cli/node_modules/rimraf/LICENSE +0 -15
- package/cli/node_modules/rimraf/README.md +0 -101
- package/cli/node_modules/rimraf/bin.js +0 -68
- package/cli/node_modules/rimraf/package.json +0 -32
- package/cli/node_modules/rimraf/rimraf.js +0 -360
- package/cli/node_modules/tmp/CHANGELOG.md +0 -288
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"packages": {
|
|
7
7
|
"..": {
|
|
8
8
|
"name": "protobufjs",
|
|
9
|
-
"version": "6.11.
|
|
9
|
+
"version": "6.11.6",
|
|
10
10
|
"extraneous": true,
|
|
11
11
|
"hasInstallScript": true,
|
|
12
12
|
"license": "BSD-3-Clause",
|
|
@@ -123,9 +123,9 @@
|
|
|
123
123
|
"license": "MIT"
|
|
124
124
|
},
|
|
125
125
|
"node_modules/brace-expansion": {
|
|
126
|
-
"version": "1.1.
|
|
127
|
-
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.
|
|
128
|
-
"integrity": "sha512-
|
|
126
|
+
"version": "1.1.14",
|
|
127
|
+
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.14.tgz",
|
|
128
|
+
"integrity": "sha512-MWPGfDxnyzKU7rNOW9SP/c50vi3xrmrua/+6hfPbCS2ABNWfx24vPidzvC7krjU/RTo235sV776ymlsMtGKj8g==",
|
|
129
129
|
"dependencies": {
|
|
130
130
|
"balanced-match": "^1.0.0",
|
|
131
131
|
"concat-map": "0.0.1"
|
|
@@ -146,6 +146,11 @@
|
|
|
146
146
|
"resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
|
|
147
147
|
"integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg=="
|
|
148
148
|
},
|
|
149
|
+
"node_modules/deep-is": {
|
|
150
|
+
"version": "0.1.4",
|
|
151
|
+
"resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz",
|
|
152
|
+
"integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ=="
|
|
153
|
+
},
|
|
149
154
|
"node_modules/entities": {
|
|
150
155
|
"version": "2.1.0",
|
|
151
156
|
"license": "BSD-2-Clause",
|
|
@@ -161,20 +166,21 @@
|
|
|
161
166
|
}
|
|
162
167
|
},
|
|
163
168
|
"node_modules/escodegen": {
|
|
164
|
-
"version": "
|
|
165
|
-
"resolved": "https://registry.npmjs.org/escodegen/-/escodegen-
|
|
166
|
-
"integrity": "sha512-
|
|
169
|
+
"version": "1.14.3",
|
|
170
|
+
"resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.14.3.tgz",
|
|
171
|
+
"integrity": "sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==",
|
|
167
172
|
"dependencies": {
|
|
168
173
|
"esprima": "^4.0.1",
|
|
169
|
-
"estraverse": "^
|
|
170
|
-
"esutils": "^2.0.2"
|
|
174
|
+
"estraverse": "^4.2.0",
|
|
175
|
+
"esutils": "^2.0.2",
|
|
176
|
+
"optionator": "^0.8.1"
|
|
171
177
|
},
|
|
172
178
|
"bin": {
|
|
173
179
|
"escodegen": "bin/escodegen.js",
|
|
174
180
|
"esgenerate": "bin/esgenerate.js"
|
|
175
181
|
},
|
|
176
182
|
"engines": {
|
|
177
|
-
"node": ">=
|
|
183
|
+
"node": ">=4.0"
|
|
178
184
|
},
|
|
179
185
|
"optionalDependencies": {
|
|
180
186
|
"source-map": "~0.6.1"
|
|
@@ -224,8 +230,9 @@
|
|
|
224
230
|
}
|
|
225
231
|
},
|
|
226
232
|
"node_modules/estraverse": {
|
|
227
|
-
"version": "
|
|
228
|
-
"
|
|
233
|
+
"version": "4.3.0",
|
|
234
|
+
"resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz",
|
|
235
|
+
"integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==",
|
|
229
236
|
"engines": {
|
|
230
237
|
"node": ">=4.0"
|
|
231
238
|
}
|
|
@@ -237,6 +244,11 @@
|
|
|
237
244
|
"node": ">=0.10.0"
|
|
238
245
|
}
|
|
239
246
|
},
|
|
247
|
+
"node_modules/fast-levenshtein": {
|
|
248
|
+
"version": "2.0.6",
|
|
249
|
+
"resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
|
|
250
|
+
"integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw=="
|
|
251
|
+
},
|
|
240
252
|
"node_modules/fs.realpath": {
|
|
241
253
|
"version": "1.0.0",
|
|
242
254
|
"license": "ISC"
|
|
@@ -245,6 +257,7 @@
|
|
|
245
257
|
"version": "7.2.3",
|
|
246
258
|
"resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz",
|
|
247
259
|
"integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
|
|
260
|
+
"deprecated": "Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me",
|
|
248
261
|
"dependencies": {
|
|
249
262
|
"fs.realpath": "^1.0.0",
|
|
250
263
|
"inflight": "^1.0.4",
|
|
@@ -266,6 +279,7 @@
|
|
|
266
279
|
},
|
|
267
280
|
"node_modules/inflight": {
|
|
268
281
|
"version": "1.0.6",
|
|
282
|
+
"deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.",
|
|
269
283
|
"license": "ISC",
|
|
270
284
|
"dependencies": {
|
|
271
285
|
"once": "^1.3.0",
|
|
@@ -318,6 +332,18 @@
|
|
|
318
332
|
"graceful-fs": "^4.1.9"
|
|
319
333
|
}
|
|
320
334
|
},
|
|
335
|
+
"node_modules/levn": {
|
|
336
|
+
"version": "0.3.0",
|
|
337
|
+
"resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz",
|
|
338
|
+
"integrity": "sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==",
|
|
339
|
+
"dependencies": {
|
|
340
|
+
"prelude-ls": "~1.1.2",
|
|
341
|
+
"type-check": "~0.3.2"
|
|
342
|
+
},
|
|
343
|
+
"engines": {
|
|
344
|
+
"node": ">= 0.8.0"
|
|
345
|
+
}
|
|
346
|
+
},
|
|
321
347
|
"node_modules/linkify-it": {
|
|
322
348
|
"version": "3.0.3",
|
|
323
349
|
"license": "MIT",
|
|
@@ -366,9 +392,9 @@
|
|
|
366
392
|
"license": "MIT"
|
|
367
393
|
},
|
|
368
394
|
"node_modules/minimatch": {
|
|
369
|
-
"version": "3.1.
|
|
370
|
-
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.
|
|
371
|
-
"integrity": "sha512-
|
|
395
|
+
"version": "3.1.5",
|
|
396
|
+
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.5.tgz",
|
|
397
|
+
"integrity": "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==",
|
|
372
398
|
"dependencies": {
|
|
373
399
|
"brace-expansion": "^1.1.7"
|
|
374
400
|
},
|
|
@@ -393,13 +419,38 @@
|
|
|
393
419
|
"wrappy": "1"
|
|
394
420
|
}
|
|
395
421
|
},
|
|
422
|
+
"node_modules/optionator": {
|
|
423
|
+
"version": "0.8.3",
|
|
424
|
+
"resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz",
|
|
425
|
+
"integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==",
|
|
426
|
+
"dependencies": {
|
|
427
|
+
"deep-is": "~0.1.3",
|
|
428
|
+
"fast-levenshtein": "~2.0.6",
|
|
429
|
+
"levn": "~0.3.0",
|
|
430
|
+
"prelude-ls": "~1.1.2",
|
|
431
|
+
"type-check": "~0.3.2",
|
|
432
|
+
"word-wrap": "~1.2.3"
|
|
433
|
+
},
|
|
434
|
+
"engines": {
|
|
435
|
+
"node": ">= 0.8.0"
|
|
436
|
+
}
|
|
437
|
+
},
|
|
396
438
|
"node_modules/path-is-absolute": {
|
|
397
439
|
"version": "1.0.1",
|
|
398
|
-
"
|
|
440
|
+
"resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
|
|
441
|
+
"integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==",
|
|
399
442
|
"engines": {
|
|
400
443
|
"node": ">=0.10.0"
|
|
401
444
|
}
|
|
402
445
|
},
|
|
446
|
+
"node_modules/prelude-ls": {
|
|
447
|
+
"version": "1.1.2",
|
|
448
|
+
"resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz",
|
|
449
|
+
"integrity": "sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==",
|
|
450
|
+
"engines": {
|
|
451
|
+
"node": ">= 0.8.0"
|
|
452
|
+
}
|
|
453
|
+
},
|
|
403
454
|
"node_modules/requizzle": {
|
|
404
455
|
"version": "0.2.3",
|
|
405
456
|
"license": "MIT",
|
|
@@ -407,19 +458,6 @@
|
|
|
407
458
|
"lodash": "^4.17.14"
|
|
408
459
|
}
|
|
409
460
|
},
|
|
410
|
-
"node_modules/rimraf": {
|
|
411
|
-
"version": "3.0.2",
|
|
412
|
-
"license": "ISC",
|
|
413
|
-
"dependencies": {
|
|
414
|
-
"glob": "^7.1.3"
|
|
415
|
-
},
|
|
416
|
-
"bin": {
|
|
417
|
-
"rimraf": "bin.js"
|
|
418
|
-
},
|
|
419
|
-
"funding": {
|
|
420
|
-
"url": "https://github.com/sponsors/isaacs"
|
|
421
|
-
}
|
|
422
|
-
},
|
|
423
461
|
"node_modules/source-map": {
|
|
424
462
|
"version": "0.6.1",
|
|
425
463
|
"license": "BSD-3-Clause",
|
|
@@ -444,13 +482,21 @@
|
|
|
444
482
|
"integrity": "sha512-y3JaeRSplks6NYQuCOj3ZFMO3j60rTwbuKCvZxsAraGYH2epusatvZ0baZYA01WsGqJBq/Dl6vOrMUJqyMj8kA=="
|
|
445
483
|
},
|
|
446
484
|
"node_modules/tmp": {
|
|
447
|
-
"version": "0.2.
|
|
485
|
+
"version": "0.2.4",
|
|
448
486
|
"license": "MIT",
|
|
487
|
+
"engines": {
|
|
488
|
+
"node": ">=14.14"
|
|
489
|
+
}
|
|
490
|
+
},
|
|
491
|
+
"node_modules/type-check": {
|
|
492
|
+
"version": "0.3.2",
|
|
493
|
+
"resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz",
|
|
494
|
+
"integrity": "sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==",
|
|
449
495
|
"dependencies": {
|
|
450
|
-
"
|
|
496
|
+
"prelude-ls": "~1.1.2"
|
|
451
497
|
},
|
|
452
498
|
"engines": {
|
|
453
|
-
"node": ">=8.
|
|
499
|
+
"node": ">= 0.8.0"
|
|
454
500
|
}
|
|
455
501
|
},
|
|
456
502
|
"node_modules/uc.micro": {
|
|
@@ -461,6 +507,14 @@
|
|
|
461
507
|
"version": "1.13.4",
|
|
462
508
|
"license": "MIT"
|
|
463
509
|
},
|
|
510
|
+
"node_modules/word-wrap": {
|
|
511
|
+
"version": "1.2.5",
|
|
512
|
+
"resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz",
|
|
513
|
+
"integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==",
|
|
514
|
+
"engines": {
|
|
515
|
+
"node": ">=0.10.0"
|
|
516
|
+
}
|
|
517
|
+
},
|
|
464
518
|
"node_modules/wrappy": {
|
|
465
519
|
"version": "1.0.2",
|
|
466
520
|
"license": "ISC"
|
|
@@ -1,14 +1,62 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
|
|
2
|
+
"_args": [
|
|
3
|
+
[
|
|
4
|
+
"@babel/parser@7.18.13",
|
|
5
|
+
"/Users/fenster/dev/protobuf.js/cli"
|
|
6
|
+
]
|
|
7
|
+
],
|
|
8
|
+
"_from": "@babel/parser@7.18.13",
|
|
9
|
+
"_id": "@babel/parser@7.18.13",
|
|
10
|
+
"_inBundle": false,
|
|
11
|
+
"_integrity": "sha512-dgXcIfMuQ0kgzLB2b9tRZs7TTFFaGM2AbtA4fJgUUYukzGH4jwsS7hzQHEGs67jdehpm22vkgKwvbU+aEflgwg==",
|
|
12
|
+
"_location": "/@babel/parser",
|
|
13
|
+
"_phantomChildren": {},
|
|
14
|
+
"_requested": {
|
|
15
|
+
"type": "version",
|
|
16
|
+
"registry": true,
|
|
17
|
+
"raw": "@babel/parser@7.18.13",
|
|
18
|
+
"name": "@babel/parser",
|
|
19
|
+
"escapedName": "@babel%2fparser",
|
|
20
|
+
"scope": "@babel",
|
|
21
|
+
"rawSpec": "7.18.13",
|
|
22
|
+
"saveSpec": null,
|
|
23
|
+
"fetchSpec": "7.18.13"
|
|
24
|
+
},
|
|
25
|
+
"_requiredBy": [
|
|
26
|
+
"/jsdoc"
|
|
27
|
+
],
|
|
28
|
+
"_resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.13.tgz",
|
|
29
|
+
"_spec": "7.18.13",
|
|
30
|
+
"_where": "/Users/fenster/dev/protobuf.js/cli",
|
|
31
|
+
"author": {
|
|
32
|
+
"name": "The Babel Team",
|
|
33
|
+
"url": "https://babel.dev/team"
|
|
34
|
+
},
|
|
35
|
+
"bin": {
|
|
36
|
+
"parser": "bin/babel-parser.js"
|
|
37
|
+
},
|
|
38
|
+
"bugs": {
|
|
39
|
+
"url": "https://github.com/babel/babel/issues?utf8=%E2%9C%93&q=is%3Aissue+label%3A%22pkg%3A+parser+%28babylon%29%22+is%3Aopen"
|
|
40
|
+
},
|
|
4
41
|
"description": "A JavaScript parser",
|
|
5
|
-
"
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
"
|
|
42
|
+
"devDependencies": {
|
|
43
|
+
"@babel/code-frame": "^7.18.6",
|
|
44
|
+
"@babel/helper-check-duplicate-nodes": "^7.18.6",
|
|
45
|
+
"@babel/helper-fixtures": "^7.18.6",
|
|
46
|
+
"@babel/helper-string-parser": "^7.18.10",
|
|
47
|
+
"@babel/helper-validator-identifier": "^7.18.6",
|
|
48
|
+
"charcodes": "^0.2.0"
|
|
11
49
|
},
|
|
50
|
+
"engines": {
|
|
51
|
+
"node": ">=6.0.0"
|
|
52
|
+
},
|
|
53
|
+
"files": [
|
|
54
|
+
"bin",
|
|
55
|
+
"lib",
|
|
56
|
+
"typings",
|
|
57
|
+
"index.cjs"
|
|
58
|
+
],
|
|
59
|
+
"homepage": "https://babel.dev/docs/en/next/babel-parser",
|
|
12
60
|
"keywords": [
|
|
13
61
|
"babel",
|
|
14
62
|
"javascript",
|
|
@@ -17,30 +65,18 @@
|
|
|
17
65
|
"ecmascript",
|
|
18
66
|
"@babel/parser"
|
|
19
67
|
],
|
|
68
|
+
"license": "MIT",
|
|
69
|
+
"main": "./lib/index.js",
|
|
70
|
+
"name": "@babel/parser",
|
|
71
|
+
"publishConfig": {
|
|
72
|
+
"access": "public"
|
|
73
|
+
},
|
|
20
74
|
"repository": {
|
|
21
75
|
"type": "git",
|
|
22
|
-
"url": "https://github.com/babel/babel.git",
|
|
76
|
+
"url": "git+https://github.com/babel/babel.git",
|
|
23
77
|
"directory": "packages/babel-parser"
|
|
24
78
|
},
|
|
25
|
-
"
|
|
79
|
+
"type": "commonjs",
|
|
26
80
|
"types": "./typings/babel-parser.d.ts",
|
|
27
|
-
"
|
|
28
|
-
|
|
29
|
-
"lib",
|
|
30
|
-
"typings",
|
|
31
|
-
"index.cjs"
|
|
32
|
-
],
|
|
33
|
-
"engines": {
|
|
34
|
-
"node": ">=6.0.0"
|
|
35
|
-
},
|
|
36
|
-
"devDependencies": {
|
|
37
|
-
"@babel/code-frame": "^7.18.6",
|
|
38
|
-
"@babel/helper-check-duplicate-nodes": "^7.18.6",
|
|
39
|
-
"@babel/helper-fixtures": "^7.18.6",
|
|
40
|
-
"@babel/helper-string-parser": "^7.18.10",
|
|
41
|
-
"@babel/helper-validator-identifier": "^7.18.6",
|
|
42
|
-
"charcodes": "^0.2.0"
|
|
43
|
-
},
|
|
44
|
-
"bin": "./bin/babel-parser.js",
|
|
45
|
-
"type": "commonjs"
|
|
46
|
-
}
|
|
81
|
+
"version": "7.18.13"
|
|
82
|
+
}
|
|
@@ -1,39 +1,68 @@
|
|
|
1
1
|
{
|
|
2
|
+
"_args": [
|
|
3
|
+
[
|
|
4
|
+
"@types/linkify-it@3.0.2",
|
|
5
|
+
"/Users/fenster/dev/protobuf.js/cli"
|
|
6
|
+
]
|
|
7
|
+
],
|
|
8
|
+
"_from": "@types/linkify-it@3.0.2",
|
|
9
|
+
"_id": "@types/linkify-it@3.0.2",
|
|
10
|
+
"_inBundle": false,
|
|
11
|
+
"_integrity": "sha512-HZQYqbiFVWufzCwexrvh694SOim8z2d+xJl5UNamcvQFejLY/2YUtzXHYi3cHdI7PMlS8ejH2slRAOJQ32aNbA==",
|
|
12
|
+
"_location": "/@types/linkify-it",
|
|
13
|
+
"_phantomChildren": {},
|
|
14
|
+
"_requested": {
|
|
15
|
+
"type": "version",
|
|
16
|
+
"registry": true,
|
|
17
|
+
"raw": "@types/linkify-it@3.0.2",
|
|
2
18
|
"name": "@types/linkify-it",
|
|
3
|
-
"
|
|
4
|
-
"
|
|
5
|
-
"
|
|
6
|
-
"
|
|
7
|
-
"
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
{
|
|
23
|
-
"name": "Rafa Gares",
|
|
24
|
-
"url": "https://github.com/ragafus",
|
|
25
|
-
"githubUsername": "ragafus"
|
|
26
|
-
}
|
|
27
|
-
],
|
|
28
|
-
"main": "",
|
|
29
|
-
"types": "index.d.ts",
|
|
30
|
-
"repository": {
|
|
31
|
-
"type": "git",
|
|
32
|
-
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git",
|
|
33
|
-
"directory": "types/linkify-it"
|
|
19
|
+
"escapedName": "@types%2flinkify-it",
|
|
20
|
+
"scope": "@types",
|
|
21
|
+
"rawSpec": "3.0.2",
|
|
22
|
+
"saveSpec": null,
|
|
23
|
+
"fetchSpec": "3.0.2"
|
|
24
|
+
},
|
|
25
|
+
"_requiredBy": [
|
|
26
|
+
"/@types/markdown-it"
|
|
27
|
+
],
|
|
28
|
+
"_resolved": "https://registry.npmjs.org/@types/linkify-it/-/linkify-it-3.0.2.tgz",
|
|
29
|
+
"_spec": "3.0.2",
|
|
30
|
+
"_where": "/Users/fenster/dev/protobuf.js/cli",
|
|
31
|
+
"bugs": {
|
|
32
|
+
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues"
|
|
33
|
+
},
|
|
34
|
+
"contributors": [
|
|
35
|
+
{
|
|
36
|
+
"name": "Lindsey Smith",
|
|
37
|
+
"url": "https://github.com/praxxis"
|
|
34
38
|
},
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
39
|
+
{
|
|
40
|
+
"name": "Robert Coie",
|
|
41
|
+
"url": "https://github.com/rapropos/typed-linkify-it"
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"name": "Alex Plumb",
|
|
45
|
+
"url": "https://github.com/alexplumb"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"name": "Rafa Gares",
|
|
49
|
+
"url": "https://github.com/ragafus"
|
|
50
|
+
}
|
|
51
|
+
],
|
|
52
|
+
"dependencies": {},
|
|
53
|
+
"description": "TypeScript definitions for linkify-it",
|
|
54
|
+
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/linkify-it",
|
|
55
|
+
"license": "MIT",
|
|
56
|
+
"main": "",
|
|
57
|
+
"name": "@types/linkify-it",
|
|
58
|
+
"repository": {
|
|
59
|
+
"type": "git",
|
|
60
|
+
"url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git",
|
|
61
|
+
"directory": "types/linkify-it"
|
|
62
|
+
},
|
|
63
|
+
"scripts": {},
|
|
64
|
+
"typeScriptVersion": "3.6",
|
|
65
|
+
"types": "index.d.ts",
|
|
66
|
+
"typesPublisherContentHash": "001e13e25578e89bdd72aba9710cc97e62dacb4982344e91c4d666aa7cfd642d",
|
|
67
|
+
"version": "3.0.2"
|
|
68
|
+
}
|
|
@@ -1,43 +1,71 @@
|
|
|
1
1
|
{
|
|
2
|
+
"_args": [
|
|
3
|
+
[
|
|
4
|
+
"@types/markdown-it@12.2.3",
|
|
5
|
+
"/Users/fenster/dev/protobuf.js/cli"
|
|
6
|
+
]
|
|
7
|
+
],
|
|
8
|
+
"_from": "@types/markdown-it@12.2.3",
|
|
9
|
+
"_id": "@types/markdown-it@12.2.3",
|
|
10
|
+
"_inBundle": false,
|
|
11
|
+
"_integrity": "sha512-GKMHFfv3458yYy+v/N8gjufHO6MSZKCOXpZc5GXIWWy8uldwfmPn98vp81gZ5f9SVw8YYBctgfJ22a2d7AOMeQ==",
|
|
12
|
+
"_location": "/@types/markdown-it",
|
|
13
|
+
"_phantomChildren": {},
|
|
14
|
+
"_requested": {
|
|
15
|
+
"type": "version",
|
|
16
|
+
"registry": true,
|
|
17
|
+
"raw": "@types/markdown-it@12.2.3",
|
|
2
18
|
"name": "@types/markdown-it",
|
|
3
|
-
"
|
|
4
|
-
"
|
|
5
|
-
"
|
|
6
|
-
"
|
|
7
|
-
"
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
},
|
|
23
|
-
{
|
|
24
|
-
"name": "Piotr Błażejewicz",
|
|
25
|
-
"url": "https://github.com/peterblazejewicz",
|
|
26
|
-
"githubUsername": "peterblazejewicz"
|
|
27
|
-
}
|
|
28
|
-
],
|
|
29
|
-
"main": "",
|
|
30
|
-
"types": "index.d.ts",
|
|
31
|
-
"repository": {
|
|
32
|
-
"type": "git",
|
|
33
|
-
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git",
|
|
34
|
-
"directory": "types/markdown-it"
|
|
19
|
+
"escapedName": "@types%2fmarkdown-it",
|
|
20
|
+
"scope": "@types",
|
|
21
|
+
"rawSpec": "12.2.3",
|
|
22
|
+
"saveSpec": null,
|
|
23
|
+
"fetchSpec": "12.2.3"
|
|
24
|
+
},
|
|
25
|
+
"_requiredBy": [
|
|
26
|
+
"/jsdoc"
|
|
27
|
+
],
|
|
28
|
+
"_resolved": "https://registry.npmjs.org/@types/markdown-it/-/markdown-it-12.2.3.tgz",
|
|
29
|
+
"_spec": "12.2.3",
|
|
30
|
+
"_where": "/Users/fenster/dev/protobuf.js/cli",
|
|
31
|
+
"bugs": {
|
|
32
|
+
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues"
|
|
33
|
+
},
|
|
34
|
+
"contributors": [
|
|
35
|
+
{
|
|
36
|
+
"name": "York Yao",
|
|
37
|
+
"url": "https://github.com/plantain-00"
|
|
35
38
|
},
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
"@types/mdurl": "*"
|
|
39
|
+
{
|
|
40
|
+
"name": "Robert Coie",
|
|
41
|
+
"url": "https://github.com/rapropos"
|
|
40
42
|
},
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
43
|
+
{
|
|
44
|
+
"name": "duduluu",
|
|
45
|
+
"url": "https://github.com/duduluu"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"name": "Piotr Błażejewicz",
|
|
49
|
+
"url": "https://github.com/peterblazejewicz"
|
|
50
|
+
}
|
|
51
|
+
],
|
|
52
|
+
"dependencies": {
|
|
53
|
+
"@types/linkify-it": "*",
|
|
54
|
+
"@types/mdurl": "*"
|
|
55
|
+
},
|
|
56
|
+
"description": "TypeScript definitions for markdown-it",
|
|
57
|
+
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/markdown-it",
|
|
58
|
+
"license": "MIT",
|
|
59
|
+
"main": "",
|
|
60
|
+
"name": "@types/markdown-it",
|
|
61
|
+
"repository": {
|
|
62
|
+
"type": "git",
|
|
63
|
+
"url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git",
|
|
64
|
+
"directory": "types/markdown-it"
|
|
65
|
+
},
|
|
66
|
+
"scripts": {},
|
|
67
|
+
"typeScriptVersion": "3.7",
|
|
68
|
+
"types": "index.d.ts",
|
|
69
|
+
"typesPublisherContentHash": "36f0d70c931d35e9b42ff42d3fcfdf021860abdb23b8a6310e8db0afd2395a15",
|
|
70
|
+
"version": "12.2.3"
|
|
71
|
+
}
|
|
@@ -1,23 +1,55 @@
|
|
|
1
1
|
{
|
|
2
|
+
"_args": [
|
|
3
|
+
[
|
|
4
|
+
"@types/mdurl@1.0.2",
|
|
5
|
+
"/Users/fenster/dev/protobuf.js/cli"
|
|
6
|
+
]
|
|
7
|
+
],
|
|
8
|
+
"_from": "@types/mdurl@1.0.2",
|
|
9
|
+
"_id": "@types/mdurl@1.0.2",
|
|
10
|
+
"_inBundle": false,
|
|
11
|
+
"_integrity": "sha512-eC4U9MlIcu2q0KQmXszyn5Akca/0jrQmwDRgpAMJai7qBWq4amIQhZyNau4VYGtCeALvW1/NtjzJJ567aZxfKA==",
|
|
12
|
+
"_location": "/@types/mdurl",
|
|
13
|
+
"_phantomChildren": {},
|
|
14
|
+
"_requested": {
|
|
15
|
+
"type": "version",
|
|
16
|
+
"registry": true,
|
|
17
|
+
"raw": "@types/mdurl@1.0.2",
|
|
2
18
|
"name": "@types/mdurl",
|
|
3
|
-
"
|
|
4
|
-
"
|
|
5
|
-
"
|
|
6
|
-
"
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
19
|
+
"escapedName": "@types%2fmdurl",
|
|
20
|
+
"scope": "@types",
|
|
21
|
+
"rawSpec": "1.0.2",
|
|
22
|
+
"saveSpec": null,
|
|
23
|
+
"fetchSpec": "1.0.2"
|
|
24
|
+
},
|
|
25
|
+
"_requiredBy": [
|
|
26
|
+
"/@types/markdown-it"
|
|
27
|
+
],
|
|
28
|
+
"_resolved": "https://registry.npmjs.org/@types/mdurl/-/mdurl-1.0.2.tgz",
|
|
29
|
+
"_spec": "1.0.2",
|
|
30
|
+
"_where": "/Users/fenster/dev/protobuf.js/cli",
|
|
31
|
+
"bugs": {
|
|
32
|
+
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues"
|
|
33
|
+
},
|
|
34
|
+
"contributors": [
|
|
35
|
+
{
|
|
36
|
+
"name": "Junyoung Choi",
|
|
37
|
+
"url": "https://github.com/rokt33r"
|
|
38
|
+
}
|
|
39
|
+
],
|
|
40
|
+
"dependencies": {},
|
|
41
|
+
"description": "TypeScript definitions for mdurl",
|
|
42
|
+
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme",
|
|
43
|
+
"license": "MIT",
|
|
44
|
+
"main": "",
|
|
45
|
+
"name": "@types/mdurl",
|
|
46
|
+
"repository": {
|
|
47
|
+
"type": "git",
|
|
48
|
+
"url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git"
|
|
49
|
+
},
|
|
50
|
+
"scripts": {},
|
|
51
|
+
"typeScriptVersion": "2.0",
|
|
52
|
+
"types": "",
|
|
53
|
+
"typesPublisherContentHash": "55901ccf45e8744ad241fd6beb7750d1c1f77d7fe727ac575e234c1431eb5bca",
|
|
54
|
+
"version": "1.0.2"
|
|
55
|
+
}
|