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
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
var pSlice = Array.prototype.slice;
|
|
2
|
+
var Object_keys = typeof Object.keys === 'function'
|
|
3
|
+
? Object.keys
|
|
4
|
+
: function (obj) {
|
|
5
|
+
var keys = [];
|
|
6
|
+
for (var key in obj) keys.push(key);
|
|
7
|
+
return keys;
|
|
8
|
+
}
|
|
9
|
+
;
|
|
10
|
+
|
|
11
|
+
var deepEqual = module.exports = function (actual, expected) {
|
|
12
|
+
// enforce Object.is +0 !== -0
|
|
13
|
+
if (actual === 0 && expected === 0) {
|
|
14
|
+
return areZerosEqual(actual, expected);
|
|
15
|
+
|
|
16
|
+
// 7.1. All identical values are equivalent, as determined by ===.
|
|
17
|
+
} else if (actual === expected) {
|
|
18
|
+
return true;
|
|
19
|
+
|
|
20
|
+
} else if (actual instanceof Date && expected instanceof Date) {
|
|
21
|
+
return actual.getTime() === expected.getTime();
|
|
22
|
+
|
|
23
|
+
} else if (isNumberNaN(actual)) {
|
|
24
|
+
return isNumberNaN(expected);
|
|
25
|
+
|
|
26
|
+
// 7.3. Other pairs that do not both pass typeof value == 'object',
|
|
27
|
+
// equivalence is determined by ==.
|
|
28
|
+
} else if (typeof actual != 'object' && typeof expected != 'object') {
|
|
29
|
+
return actual == expected;
|
|
30
|
+
|
|
31
|
+
// 7.4. For all other Object pairs, including Array objects, equivalence is
|
|
32
|
+
// determined by having the same number of owned properties (as verified
|
|
33
|
+
// with Object.prototype.hasOwnProperty.call), the same set of keys
|
|
34
|
+
// (although not necessarily the same order), equivalent values for every
|
|
35
|
+
// corresponding key, and an identical 'prototype' property. Note: this
|
|
36
|
+
// accounts for both named and indexed properties on Arrays.
|
|
37
|
+
} else {
|
|
38
|
+
return objEquiv(actual, expected);
|
|
39
|
+
}
|
|
40
|
+
};
|
|
41
|
+
|
|
42
|
+
function isUndefinedOrNull(value) {
|
|
43
|
+
return value === null || value === undefined;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
function isArguments(object) {
|
|
47
|
+
return Object.prototype.toString.call(object) == '[object Arguments]';
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
function isNumberNaN(value) {
|
|
51
|
+
// NaN === NaN -> false
|
|
52
|
+
return typeof value == 'number' && value !== value;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
function areZerosEqual(zeroA, zeroB) {
|
|
56
|
+
// (1 / +0|0) -> Infinity, but (1 / -0) -> -Infinity and (Infinity !== -Infinity)
|
|
57
|
+
return (1 / zeroA) === (1 / zeroB);
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
function objEquiv(a, b) {
|
|
61
|
+
if (isUndefinedOrNull(a) || isUndefinedOrNull(b))
|
|
62
|
+
return false;
|
|
63
|
+
|
|
64
|
+
// an identical 'prototype' property.
|
|
65
|
+
if (a.prototype !== b.prototype) return false;
|
|
66
|
+
//~~~I've managed to break Object.keys through screwy arguments passing.
|
|
67
|
+
// Converting to array solves the problem.
|
|
68
|
+
if (isArguments(a)) {
|
|
69
|
+
if (!isArguments(b)) {
|
|
70
|
+
return false;
|
|
71
|
+
}
|
|
72
|
+
a = pSlice.call(a);
|
|
73
|
+
b = pSlice.call(b);
|
|
74
|
+
return deepEqual(a, b);
|
|
75
|
+
}
|
|
76
|
+
try {
|
|
77
|
+
var ka = Object_keys(a),
|
|
78
|
+
kb = Object_keys(b),
|
|
79
|
+
key, i;
|
|
80
|
+
} catch (e) {//happens when one is a string literal and the other isn't
|
|
81
|
+
return false;
|
|
82
|
+
}
|
|
83
|
+
// having the same number of owned properties (keys incorporates
|
|
84
|
+
// hasOwnProperty)
|
|
85
|
+
if (ka.length != kb.length)
|
|
86
|
+
return false;
|
|
87
|
+
//the same set of keys (although not necessarily the same order),
|
|
88
|
+
ka.sort();
|
|
89
|
+
kb.sort();
|
|
90
|
+
//~~~cheap key test
|
|
91
|
+
for (i = ka.length - 1; i >= 0; i--) {
|
|
92
|
+
if (ka[i] != kb[i])
|
|
93
|
+
return false;
|
|
94
|
+
}
|
|
95
|
+
//equivalent values for every corresponding key, and
|
|
96
|
+
//~~~possibly expensive deep test
|
|
97
|
+
for (i = ka.length - 1; i >= 0; i--) {
|
|
98
|
+
key = ka[i];
|
|
99
|
+
if (!deepEqual(a[key], b[key])) return false;
|
|
100
|
+
}
|
|
101
|
+
return true;
|
|
102
|
+
}
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "deep-is",
|
|
3
|
+
"version": "0.1.4",
|
|
4
|
+
"description": "node's assert.deepEqual algorithm except for NaN being equal to NaN",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"directories": {
|
|
7
|
+
"lib": ".",
|
|
8
|
+
"example": "example",
|
|
9
|
+
"test": "test"
|
|
10
|
+
},
|
|
11
|
+
"scripts": {
|
|
12
|
+
"test": "tape test/*.js"
|
|
13
|
+
},
|
|
14
|
+
"devDependencies": {
|
|
15
|
+
"tape": "~1.0.2"
|
|
16
|
+
},
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "http://github.com/thlorenz/deep-is.git"
|
|
20
|
+
},
|
|
21
|
+
"keywords": [
|
|
22
|
+
"equality",
|
|
23
|
+
"equal",
|
|
24
|
+
"compare"
|
|
25
|
+
],
|
|
26
|
+
"author": {
|
|
27
|
+
"name": "Thorsten Lorenz",
|
|
28
|
+
"email": "thlorenz@gmx.de",
|
|
29
|
+
"url": "http://thlorenz.com"
|
|
30
|
+
},
|
|
31
|
+
"license": "MIT",
|
|
32
|
+
"testling": {
|
|
33
|
+
"files": "test/*.js",
|
|
34
|
+
"browsers": {
|
|
35
|
+
"ie": [
|
|
36
|
+
6,
|
|
37
|
+
7,
|
|
38
|
+
8,
|
|
39
|
+
9
|
|
40
|
+
],
|
|
41
|
+
"ff": [
|
|
42
|
+
3.5,
|
|
43
|
+
10,
|
|
44
|
+
15
|
|
45
|
+
],
|
|
46
|
+
"chrome": [
|
|
47
|
+
10,
|
|
48
|
+
22
|
|
49
|
+
],
|
|
50
|
+
"safari": [
|
|
51
|
+
5.1
|
|
52
|
+
],
|
|
53
|
+
"opera": [
|
|
54
|
+
12
|
|
55
|
+
]
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
var test = require('tape');
|
|
2
|
+
var equal = require('../');
|
|
3
|
+
|
|
4
|
+
test('NaN and 0 values', function (t) {
|
|
5
|
+
t.ok(equal(NaN, NaN));
|
|
6
|
+
t.notOk(equal(0, NaN));
|
|
7
|
+
t.ok(equal(0, 0));
|
|
8
|
+
t.notOk(equal(0, 1));
|
|
9
|
+
t.end();
|
|
10
|
+
});
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
test('nested NaN values', function (t) {
|
|
14
|
+
t.ok(equal([ NaN, 1, NaN ], [ NaN, 1, NaN ]));
|
|
15
|
+
t.end();
|
|
16
|
+
});
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
var test = require('tape');
|
|
2
|
+
var equal = require('../');
|
|
3
|
+
|
|
4
|
+
test('equal', function (t) {
|
|
5
|
+
t.ok(equal(
|
|
6
|
+
{ a : [ 2, 3 ], b : [ 4 ] },
|
|
7
|
+
{ a : [ 2, 3 ], b : [ 4 ] }
|
|
8
|
+
));
|
|
9
|
+
t.end();
|
|
10
|
+
});
|
|
11
|
+
|
|
12
|
+
test('not equal', function (t) {
|
|
13
|
+
t.notOk(equal(
|
|
14
|
+
{ x : 5, y : [6] },
|
|
15
|
+
{ x : 5, y : 6 }
|
|
16
|
+
));
|
|
17
|
+
t.end();
|
|
18
|
+
});
|
|
19
|
+
|
|
20
|
+
test('nested nulls', function (t) {
|
|
21
|
+
t.ok(equal([ null, null, null ], [ null, null, null ]));
|
|
22
|
+
t.end();
|
|
23
|
+
});
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
var test = require('tape');
|
|
2
|
+
var equal = require('../');
|
|
3
|
+
|
|
4
|
+
test('0 values', function (t) {
|
|
5
|
+
t.ok(equal( 0, 0), ' 0 === 0');
|
|
6
|
+
t.ok(equal( 0, +0), ' 0 === +0');
|
|
7
|
+
t.ok(equal(+0, +0), '+0 === +0');
|
|
8
|
+
t.ok(equal(-0, -0), '-0 === -0');
|
|
9
|
+
|
|
10
|
+
t.notOk(equal(-0, 0), '-0 !== 0');
|
|
11
|
+
t.notOk(equal(-0, +0), '-0 !== +0');
|
|
12
|
+
|
|
13
|
+
t.end();
|
|
14
|
+
});
|
|
15
|
+
|
|
@@ -1,63 +1,98 @@
|
|
|
1
1
|
{
|
|
2
|
+
"_args": [
|
|
3
|
+
[
|
|
4
|
+
"entities@2.1.0",
|
|
5
|
+
"/Users/fenster/dev/protobuf.js/cli"
|
|
6
|
+
]
|
|
7
|
+
],
|
|
8
|
+
"_from": "entities@2.1.0",
|
|
9
|
+
"_id": "entities@2.1.0",
|
|
10
|
+
"_inBundle": false,
|
|
11
|
+
"_integrity": "sha512-hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w==",
|
|
12
|
+
"_location": "/entities",
|
|
13
|
+
"_phantomChildren": {},
|
|
14
|
+
"_requested": {
|
|
15
|
+
"type": "version",
|
|
16
|
+
"registry": true,
|
|
17
|
+
"raw": "entities@2.1.0",
|
|
2
18
|
"name": "entities",
|
|
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
|
-
|
|
19
|
+
"escapedName": "entities",
|
|
20
|
+
"rawSpec": "2.1.0",
|
|
21
|
+
"saveSpec": null,
|
|
22
|
+
"fetchSpec": "2.1.0"
|
|
23
|
+
},
|
|
24
|
+
"_requiredBy": [
|
|
25
|
+
"/markdown-it"
|
|
26
|
+
],
|
|
27
|
+
"_resolved": "https://registry.npmjs.org/entities/-/entities-2.1.0.tgz",
|
|
28
|
+
"_spec": "2.1.0",
|
|
29
|
+
"_where": "/Users/fenster/dev/protobuf.js/cli",
|
|
30
|
+
"author": {
|
|
31
|
+
"name": "Felix Boehm",
|
|
32
|
+
"email": "me@feedic.com"
|
|
33
|
+
},
|
|
34
|
+
"bugs": {
|
|
35
|
+
"url": "https://github.com/fb55/entities/issues"
|
|
36
|
+
},
|
|
37
|
+
"description": "Encode & decode XML and HTML entities with ease",
|
|
38
|
+
"devDependencies": {
|
|
39
|
+
"@types/jest": "^26.0.0",
|
|
40
|
+
"@types/node": "^14.11.8",
|
|
41
|
+
"@typescript-eslint/eslint-plugin": "^4.4.1",
|
|
42
|
+
"@typescript-eslint/parser": "^4.4.1",
|
|
43
|
+
"coveralls": "*",
|
|
44
|
+
"eslint": "^7.11.0",
|
|
45
|
+
"eslint-config-prettier": "^6.0.0",
|
|
46
|
+
"eslint-plugin-node": "^11.1.0",
|
|
47
|
+
"jest": "^26.5.3",
|
|
48
|
+
"prettier": "^2.0.5",
|
|
49
|
+
"ts-jest": "^26.1.0",
|
|
50
|
+
"typescript": "^4.0.2"
|
|
51
|
+
},
|
|
52
|
+
"directories": {
|
|
53
|
+
"lib": "lib/"
|
|
54
|
+
},
|
|
55
|
+
"files": [
|
|
56
|
+
"lib/**/*"
|
|
57
|
+
],
|
|
58
|
+
"funding": "https://github.com/fb55/entities?sponsor=1",
|
|
59
|
+
"homepage": "https://github.com/fb55/entities#readme",
|
|
60
|
+
"jest": {
|
|
61
|
+
"preset": "ts-jest",
|
|
62
|
+
"testEnvironment": "node"
|
|
63
|
+
},
|
|
64
|
+
"keywords": [
|
|
65
|
+
"entity",
|
|
66
|
+
"decoding",
|
|
67
|
+
"encoding",
|
|
68
|
+
"html",
|
|
69
|
+
"xml",
|
|
70
|
+
"html entities"
|
|
71
|
+
],
|
|
72
|
+
"license": "BSD-2-Clause",
|
|
73
|
+
"main": "lib/index.js",
|
|
74
|
+
"name": "entities",
|
|
75
|
+
"prettier": {
|
|
76
|
+
"tabWidth": 4
|
|
77
|
+
},
|
|
78
|
+
"repository": {
|
|
79
|
+
"type": "git",
|
|
80
|
+
"url": "git://github.com/fb55/entities.git"
|
|
81
|
+
},
|
|
82
|
+
"scripts": {
|
|
83
|
+
"build": "tsc && cp -r src/maps lib",
|
|
84
|
+
"coverage": "cat coverage/lcov.info | coveralls",
|
|
85
|
+
"format": "npm run format:es && npm run format:prettier",
|
|
86
|
+
"format:es": "npm run lint:es -- --fix",
|
|
87
|
+
"format:prettier": "npm run prettier -- --write",
|
|
88
|
+
"lint": "npm run lint:es && npm run lint:prettier",
|
|
89
|
+
"lint:es": "eslint .",
|
|
90
|
+
"lint:prettier": "npm run prettier -- --check",
|
|
91
|
+
"prepare": "npm run build",
|
|
92
|
+
"prettier": "prettier '**/*.{ts,md,json,yml}'",
|
|
93
|
+
"test": "jest --coverage && npm run lint"
|
|
94
|
+
},
|
|
95
|
+
"sideEffects": false,
|
|
96
|
+
"types": "lib/index.d.ts",
|
|
97
|
+
"version": "2.1.0"
|
|
63
98
|
}
|
|
@@ -1,43 +1,86 @@
|
|
|
1
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
|
-
|
|
2
|
+
"_args": [
|
|
3
|
+
[
|
|
4
|
+
"escape-string-regexp@2.0.0",
|
|
5
|
+
"/Users/fenster/dev/protobuf.js/cli"
|
|
6
|
+
]
|
|
7
|
+
],
|
|
8
|
+
"_from": "escape-string-regexp@2.0.0",
|
|
9
|
+
"_id": "escape-string-regexp@2.0.0",
|
|
10
|
+
"_inBundle": false,
|
|
11
|
+
"_integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==",
|
|
12
|
+
"_location": "/escape-string-regexp",
|
|
13
|
+
"_phantomChildren": {},
|
|
14
|
+
"_requested": {
|
|
15
|
+
"type": "version",
|
|
16
|
+
"registry": true,
|
|
17
|
+
"raw": "escape-string-regexp@2.0.0",
|
|
18
|
+
"name": "escape-string-regexp",
|
|
19
|
+
"escapedName": "escape-string-regexp",
|
|
20
|
+
"rawSpec": "2.0.0",
|
|
21
|
+
"saveSpec": null,
|
|
22
|
+
"fetchSpec": "2.0.0"
|
|
23
|
+
},
|
|
24
|
+
"_requiredBy": [
|
|
25
|
+
"/jsdoc"
|
|
26
|
+
],
|
|
27
|
+
"_resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz",
|
|
28
|
+
"_spec": "2.0.0",
|
|
29
|
+
"_where": "/Users/fenster/dev/protobuf.js/cli",
|
|
30
|
+
"author": {
|
|
31
|
+
"name": "Sindre Sorhus",
|
|
32
|
+
"email": "sindresorhus@gmail.com",
|
|
33
|
+
"url": "sindresorhus.com"
|
|
34
|
+
},
|
|
35
|
+
"bugs": {
|
|
36
|
+
"url": "https://github.com/sindresorhus/escape-string-regexp/issues"
|
|
37
|
+
},
|
|
38
|
+
"description": "Escape RegExp special characters",
|
|
39
|
+
"devDependencies": {
|
|
40
|
+
"ava": "^1.4.1",
|
|
41
|
+
"tsd": "^0.7.2",
|
|
42
|
+
"xo": "^0.24.0"
|
|
43
|
+
},
|
|
44
|
+
"engines": {
|
|
45
|
+
"node": ">=8"
|
|
46
|
+
},
|
|
47
|
+
"files": [
|
|
48
|
+
"index.js",
|
|
49
|
+
"index.d.ts"
|
|
50
|
+
],
|
|
51
|
+
"homepage": "https://github.com/sindresorhus/escape-string-regexp#readme",
|
|
52
|
+
"keywords": [
|
|
53
|
+
"escape",
|
|
54
|
+
"regex",
|
|
55
|
+
"regexp",
|
|
56
|
+
"re",
|
|
57
|
+
"regular",
|
|
58
|
+
"expression",
|
|
59
|
+
"string",
|
|
60
|
+
"str",
|
|
61
|
+
"special",
|
|
62
|
+
"characters"
|
|
63
|
+
],
|
|
64
|
+
"license": "MIT",
|
|
65
|
+
"maintainers": [
|
|
66
|
+
{
|
|
67
|
+
"name": "Sindre Sorhus",
|
|
68
|
+
"email": "sindresorhus@gmail.com",
|
|
69
|
+
"url": "sindresorhus.com"
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"name": "Joshua Boy Nicolai Appelman",
|
|
73
|
+
"email": "joshua@jbna.nl",
|
|
74
|
+
"url": "jbna.nl"
|
|
75
|
+
}
|
|
76
|
+
],
|
|
77
|
+
"name": "escape-string-regexp",
|
|
78
|
+
"repository": {
|
|
79
|
+
"type": "git",
|
|
80
|
+
"url": "git+https://github.com/sindresorhus/escape-string-regexp.git"
|
|
81
|
+
},
|
|
82
|
+
"scripts": {
|
|
83
|
+
"test": "xo && ava && tsd"
|
|
84
|
+
},
|
|
85
|
+
"version": "2.0.0"
|
|
43
86
|
}
|