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
|
+
// Generated by LiveScript 1.2.0
|
|
2
|
+
(function(){
|
|
3
|
+
var reject, special, tokenRegex;
|
|
4
|
+
reject = require('prelude-ls').reject;
|
|
5
|
+
function consumeOp(tokens, op){
|
|
6
|
+
if (tokens[0] === op) {
|
|
7
|
+
return tokens.shift();
|
|
8
|
+
} else {
|
|
9
|
+
throw new Error("Expected '" + op + "', but got '" + tokens[0] + "' instead in " + JSON.stringify(tokens) + ".");
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
function maybeConsumeOp(tokens, op){
|
|
13
|
+
if (tokens[0] === op) {
|
|
14
|
+
return tokens.shift();
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
function consumeList(tokens, delimiters, hasDelimiters){
|
|
18
|
+
var result;
|
|
19
|
+
if (hasDelimiters) {
|
|
20
|
+
consumeOp(tokens, delimiters[0]);
|
|
21
|
+
}
|
|
22
|
+
result = [];
|
|
23
|
+
while (tokens.length && tokens[0] !== delimiters[1]) {
|
|
24
|
+
result.push(consumeElement(tokens));
|
|
25
|
+
maybeConsumeOp(tokens, ',');
|
|
26
|
+
}
|
|
27
|
+
if (hasDelimiters) {
|
|
28
|
+
consumeOp(tokens, delimiters[1]);
|
|
29
|
+
}
|
|
30
|
+
return result;
|
|
31
|
+
}
|
|
32
|
+
function consumeArray(tokens, hasDelimiters){
|
|
33
|
+
return consumeList(tokens, ['[', ']'], hasDelimiters);
|
|
34
|
+
}
|
|
35
|
+
function consumeTuple(tokens, hasDelimiters){
|
|
36
|
+
return consumeList(tokens, ['(', ')'], hasDelimiters);
|
|
37
|
+
}
|
|
38
|
+
function consumeFields(tokens, hasDelimiters){
|
|
39
|
+
var result, key;
|
|
40
|
+
if (hasDelimiters) {
|
|
41
|
+
consumeOp(tokens, '{');
|
|
42
|
+
}
|
|
43
|
+
result = {};
|
|
44
|
+
while (tokens.length && (!hasDelimiters || tokens[0] !== '}')) {
|
|
45
|
+
key = tokens.shift();
|
|
46
|
+
consumeOp(tokens, ':');
|
|
47
|
+
result[key] = consumeElement(tokens);
|
|
48
|
+
maybeConsumeOp(tokens, ',');
|
|
49
|
+
}
|
|
50
|
+
if (hasDelimiters) {
|
|
51
|
+
consumeOp(tokens, '}');
|
|
52
|
+
}
|
|
53
|
+
return result;
|
|
54
|
+
}
|
|
55
|
+
function consumeElement(tokens){
|
|
56
|
+
switch (tokens[0]) {
|
|
57
|
+
case '[':
|
|
58
|
+
return consumeArray(tokens, true);
|
|
59
|
+
case '(':
|
|
60
|
+
return consumeTuple(tokens, true);
|
|
61
|
+
case '{':
|
|
62
|
+
return consumeFields(tokens, true);
|
|
63
|
+
default:
|
|
64
|
+
return tokens.shift();
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
function consumeTopLevel(tokens, types){
|
|
68
|
+
var ref$, type, structure, origTokens, result, finalResult, x$, y$;
|
|
69
|
+
ref$ = types[0], type = ref$.type, structure = ref$.structure;
|
|
70
|
+
origTokens = tokens.concat();
|
|
71
|
+
if (types.length === 1 && (structure || (type === 'Array' || type === 'Object'))) {
|
|
72
|
+
result = structure === 'array' || type === 'Array'
|
|
73
|
+
? consumeArray(tokens, tokens[0] === '[')
|
|
74
|
+
: structure === 'tuple'
|
|
75
|
+
? consumeTuple(tokens, tokens[0] === '(')
|
|
76
|
+
: consumeFields(tokens, tokens[0] === '{');
|
|
77
|
+
finalResult = tokens.length ? consumeElement(structure === 'array' || type === 'Array'
|
|
78
|
+
? (x$ = origTokens, x$.unshift('['), x$.push(']'), x$)
|
|
79
|
+
: (y$ = origTokens, y$.unshift('('), y$.push(')'), y$)) : result;
|
|
80
|
+
} else {
|
|
81
|
+
finalResult = consumeElement(tokens);
|
|
82
|
+
}
|
|
83
|
+
if (tokens.length && origTokens.length) {
|
|
84
|
+
throw new Error("Unable to parse " + JSON.stringify(origTokens) + " of type " + JSON.stringify(types) + ".");
|
|
85
|
+
} else {
|
|
86
|
+
return finalResult;
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
special = /\[\]\(\)}{:,/.source;
|
|
90
|
+
tokenRegex = RegExp('("(?:[^"]|\\\\")*")|(\'(?:[^\']|\\\\\')*\')|(#.*#)|(/(?:\\\\/|[^/])*/[gimy]*)|([' + special + '])|([^\\s' + special + ']+)|\\s*');
|
|
91
|
+
module.exports = function(string, types){
|
|
92
|
+
var tokens, node;
|
|
93
|
+
tokens = reject(function(it){
|
|
94
|
+
return !it || /^\s+$/.test(it);
|
|
95
|
+
}, string.split(tokenRegex));
|
|
96
|
+
node = consumeTopLevel(tokens, types);
|
|
97
|
+
if (!node) {
|
|
98
|
+
throw new Error("Error parsing '" + string + "'.");
|
|
99
|
+
}
|
|
100
|
+
return node;
|
|
101
|
+
};
|
|
102
|
+
}).call(this);
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "levn",
|
|
3
|
+
"version": "0.3.0",
|
|
4
|
+
"author": "George Zahariev <z@georgezahariev.com>",
|
|
5
|
+
"description": "Light ECMAScript (JavaScript) Value Notation - human written, concise, typed, flexible",
|
|
6
|
+
"homepage": "https://github.com/gkz/levn",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"levn",
|
|
9
|
+
"light",
|
|
10
|
+
"ecmascript",
|
|
11
|
+
"value",
|
|
12
|
+
"notation",
|
|
13
|
+
"json",
|
|
14
|
+
"typed",
|
|
15
|
+
"human",
|
|
16
|
+
"concise",
|
|
17
|
+
"typed",
|
|
18
|
+
"flexible"
|
|
19
|
+
],
|
|
20
|
+
"files": [
|
|
21
|
+
"lib",
|
|
22
|
+
"README.md",
|
|
23
|
+
"LICENSE"
|
|
24
|
+
],
|
|
25
|
+
"main": "./lib/",
|
|
26
|
+
"bugs": "https://github.com/gkz/levn/issues",
|
|
27
|
+
"license": "MIT",
|
|
28
|
+
"engines": {
|
|
29
|
+
"node": ">= 0.8.0"
|
|
30
|
+
},
|
|
31
|
+
"repository": {
|
|
32
|
+
"type": "git",
|
|
33
|
+
"url": "git://github.com/gkz/levn.git"
|
|
34
|
+
},
|
|
35
|
+
"scripts": {
|
|
36
|
+
"test": "make test"
|
|
37
|
+
},
|
|
38
|
+
"dependencies": {
|
|
39
|
+
"prelude-ls": "~1.1.2",
|
|
40
|
+
"type-check": "~0.3.2"
|
|
41
|
+
},
|
|
42
|
+
"devDependencies": {
|
|
43
|
+
"livescript": "~1.4.0",
|
|
44
|
+
"mocha": "~2.3.4",
|
|
45
|
+
"istanbul": "~0.4.1"
|
|
46
|
+
}
|
|
47
|
+
}
|
|
@@ -1,32 +1,39 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
"linkifier",
|
|
8
|
-
"autolink",
|
|
9
|
-
"autolinker"
|
|
2
|
+
"_args": [
|
|
3
|
+
[
|
|
4
|
+
"linkify-it@3.0.3",
|
|
5
|
+
"/Users/fenster/dev/protobuf.js/cli"
|
|
6
|
+
]
|
|
10
7
|
],
|
|
11
|
-
"
|
|
12
|
-
"
|
|
13
|
-
|
|
14
|
-
|
|
8
|
+
"_from": "linkify-it@3.0.3",
|
|
9
|
+
"_id": "linkify-it@3.0.3",
|
|
10
|
+
"_inBundle": false,
|
|
11
|
+
"_integrity": "sha512-ynTsyrFSdE5oZ/O9GEf00kPngmOfVwazR5GKDq6EYfhlpFug3J2zybX56a2PRRpc9P+FuSoGNAwjlbDs9jJBPQ==",
|
|
12
|
+
"_location": "/linkify-it",
|
|
13
|
+
"_phantomChildren": {},
|
|
14
|
+
"_requested": {
|
|
15
|
+
"type": "version",
|
|
16
|
+
"registry": true,
|
|
17
|
+
"raw": "linkify-it@3.0.3",
|
|
18
|
+
"name": "linkify-it",
|
|
19
|
+
"escapedName": "linkify-it",
|
|
20
|
+
"rawSpec": "3.0.3",
|
|
21
|
+
"saveSpec": null,
|
|
22
|
+
"fetchSpec": "3.0.3"
|
|
23
|
+
},
|
|
24
|
+
"_requiredBy": [
|
|
25
|
+
"/markdown-it"
|
|
15
26
|
],
|
|
16
|
-
"
|
|
17
|
-
"
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
"
|
|
21
|
-
"report-coveralls": "nyc report --reporter=text-lcov | coveralls",
|
|
22
|
-
"demo": "npm run lint && node support/build_demo.js",
|
|
23
|
-
"doc": "node support/build_doc.js",
|
|
24
|
-
"gh-pages": "npm run demo && npm run doc && shx cp -R doc/ demo/ && gh-pages -d demo -f",
|
|
25
|
-
"prepublishOnly": "npm run gh-pages"
|
|
27
|
+
"_resolved": "https://registry.npmjs.org/linkify-it/-/linkify-it-3.0.3.tgz",
|
|
28
|
+
"_spec": "3.0.3",
|
|
29
|
+
"_where": "/Users/fenster/dev/protobuf.js/cli",
|
|
30
|
+
"bugs": {
|
|
31
|
+
"url": "https://github.com/markdown-it/linkify-it/issues"
|
|
26
32
|
},
|
|
27
33
|
"dependencies": {
|
|
28
34
|
"uc.micro": "^1.0.1"
|
|
29
35
|
},
|
|
36
|
+
"description": "Links recognition library with FULL unicode support",
|
|
30
37
|
"devDependencies": {
|
|
31
38
|
"ansi": "^0.3.0",
|
|
32
39
|
"autoprefixer-stylus": "^0.14.0",
|
|
@@ -44,5 +51,33 @@
|
|
|
44
51
|
"shx": "^0.3.2",
|
|
45
52
|
"stylus": "~0.54.5",
|
|
46
53
|
"tlds": "^1.166.0"
|
|
47
|
-
}
|
|
54
|
+
},
|
|
55
|
+
"files": [
|
|
56
|
+
"index.js",
|
|
57
|
+
"lib/"
|
|
58
|
+
],
|
|
59
|
+
"homepage": "https://github.com/markdown-it/linkify-it#readme",
|
|
60
|
+
"keywords": [
|
|
61
|
+
"linkify",
|
|
62
|
+
"linkifier",
|
|
63
|
+
"autolink",
|
|
64
|
+
"autolinker"
|
|
65
|
+
],
|
|
66
|
+
"license": "MIT",
|
|
67
|
+
"name": "linkify-it",
|
|
68
|
+
"repository": {
|
|
69
|
+
"type": "git",
|
|
70
|
+
"url": "git+https://github.com/markdown-it/linkify-it.git"
|
|
71
|
+
},
|
|
72
|
+
"scripts": {
|
|
73
|
+
"coverage": "npm run test && nyc report --reporter html",
|
|
74
|
+
"demo": "npm run lint && node support/build_demo.js",
|
|
75
|
+
"doc": "node support/build_doc.js",
|
|
76
|
+
"gh-pages": "npm run demo && npm run doc && shx cp -R doc/ demo/ && gh-pages -d demo -f",
|
|
77
|
+
"lint": "eslint .",
|
|
78
|
+
"prepublishOnly": "npm run gh-pages",
|
|
79
|
+
"report-coveralls": "nyc report --reporter=text-lcov | coveralls",
|
|
80
|
+
"test": "npm run lint && nyc mocha"
|
|
81
|
+
},
|
|
82
|
+
"version": "3.0.3"
|
|
48
83
|
}
|
|
@@ -1,17 +1,68 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
|
|
2
|
+
"_args": [
|
|
3
|
+
[
|
|
4
|
+
"lodash@4.17.21",
|
|
5
|
+
"/Users/fenster/dev/protobuf.js/cli"
|
|
6
|
+
]
|
|
7
|
+
],
|
|
8
|
+
"_from": "lodash@4.17.21",
|
|
9
|
+
"_id": "lodash@4.17.21",
|
|
10
|
+
"_inBundle": false,
|
|
11
|
+
"_integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==",
|
|
12
|
+
"_location": "/lodash",
|
|
13
|
+
"_phantomChildren": {},
|
|
14
|
+
"_requested": {
|
|
15
|
+
"type": "version",
|
|
16
|
+
"registry": true,
|
|
17
|
+
"raw": "lodash@4.17.21",
|
|
18
|
+
"name": "lodash",
|
|
19
|
+
"escapedName": "lodash",
|
|
20
|
+
"rawSpec": "4.17.21",
|
|
21
|
+
"saveSpec": null,
|
|
22
|
+
"fetchSpec": "4.17.21"
|
|
23
|
+
},
|
|
24
|
+
"_requiredBy": [
|
|
25
|
+
"/@jsdoc/salty",
|
|
26
|
+
"/catharsis",
|
|
27
|
+
"/requizzle"
|
|
28
|
+
],
|
|
29
|
+
"_resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz",
|
|
30
|
+
"_spec": "4.17.21",
|
|
31
|
+
"_where": "/Users/fenster/dev/protobuf.js/cli",
|
|
32
|
+
"author": {
|
|
33
|
+
"name": "John-David Dalton",
|
|
34
|
+
"email": "john.david.dalton@gmail.com"
|
|
35
|
+
},
|
|
36
|
+
"bugs": {
|
|
37
|
+
"url": "https://github.com/lodash/lodash/issues"
|
|
38
|
+
},
|
|
39
|
+
"contributors": [
|
|
40
|
+
{
|
|
41
|
+
"name": "John-David Dalton",
|
|
42
|
+
"email": "john.david.dalton@gmail.com"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"name": "Mathias Bynens",
|
|
46
|
+
"email": "mathias@qiwi.be"
|
|
47
|
+
}
|
|
48
|
+
],
|
|
4
49
|
"description": "Lodash modular utilities.",
|
|
5
|
-
"keywords": "modules, stdlib, util",
|
|
6
50
|
"homepage": "https://lodash.com/",
|
|
7
|
-
"repository": "lodash/lodash",
|
|
8
51
|
"icon": "https://lodash.com/icon.svg",
|
|
52
|
+
"keywords": [
|
|
53
|
+
"modules",
|
|
54
|
+
"stdlib",
|
|
55
|
+
"util"
|
|
56
|
+
],
|
|
9
57
|
"license": "MIT",
|
|
10
58
|
"main": "lodash.js",
|
|
11
|
-
"
|
|
12
|
-
"
|
|
13
|
-
"
|
|
14
|
-
"
|
|
15
|
-
|
|
16
|
-
"scripts": {
|
|
59
|
+
"name": "lodash",
|
|
60
|
+
"repository": {
|
|
61
|
+
"type": "git",
|
|
62
|
+
"url": "git+https://github.com/lodash/lodash.git"
|
|
63
|
+
},
|
|
64
|
+
"scripts": {
|
|
65
|
+
"test": "echo \"See https://travis-ci.org/lodash-archive/lodash-cli for testing details.\""
|
|
66
|
+
},
|
|
67
|
+
"version": "4.17.21"
|
|
17
68
|
}
|
|
@@ -1,41 +1,38 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
"parser",
|
|
8
|
-
"commonmark",
|
|
9
|
-
"markdown-it",
|
|
10
|
-
"markdown-it-plugin"
|
|
2
|
+
"_args": [
|
|
3
|
+
[
|
|
4
|
+
"markdown-it@12.3.2",
|
|
5
|
+
"/Users/fenster/dev/protobuf.js/cli"
|
|
6
|
+
]
|
|
11
7
|
],
|
|
12
|
-
"
|
|
13
|
-
"
|
|
14
|
-
"
|
|
8
|
+
"_from": "markdown-it@12.3.2",
|
|
9
|
+
"_id": "markdown-it@12.3.2",
|
|
10
|
+
"_inBundle": false,
|
|
11
|
+
"_integrity": "sha512-TchMembfxfNVpHkbtriWltGWc+m3xszaRD0CZup7GFFhzIgQqxIfn3eGj1yZpfuflzPvfkt611B2Q/Bsk1YnGg==",
|
|
12
|
+
"_location": "/markdown-it",
|
|
13
|
+
"_phantomChildren": {},
|
|
14
|
+
"_requested": {
|
|
15
|
+
"type": "version",
|
|
16
|
+
"registry": true,
|
|
17
|
+
"raw": "markdown-it@12.3.2",
|
|
18
|
+
"name": "markdown-it",
|
|
19
|
+
"escapedName": "markdown-it",
|
|
20
|
+
"rawSpec": "12.3.2",
|
|
21
|
+
"saveSpec": null,
|
|
22
|
+
"fetchSpec": "12.3.2"
|
|
23
|
+
},
|
|
24
|
+
"_requiredBy": [
|
|
25
|
+
"/jsdoc"
|
|
26
|
+
],
|
|
27
|
+
"_resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-12.3.2.tgz",
|
|
28
|
+
"_spec": "12.3.2",
|
|
29
|
+
"_where": "/Users/fenster/dev/protobuf.js/cli",
|
|
15
30
|
"bin": {
|
|
16
31
|
"markdown-it": "bin/markdown-it.js"
|
|
17
32
|
},
|
|
18
|
-
"
|
|
19
|
-
"
|
|
20
|
-
"test": "npm run lint && nyc mocha && node support/specsplit.js",
|
|
21
|
-
"coverage": "npm run test && nyc report --reporter html",
|
|
22
|
-
"report-coveralls": "nyc --reporter=lcov mocha",
|
|
23
|
-
"doc": "node support/build_doc.js",
|
|
24
|
-
"gh-doc": "npm run doc && gh-pages -d apidoc -f",
|
|
25
|
-
"demo": "npm run lint && node support/build_demo.js",
|
|
26
|
-
"gh-demo": "npm run demo && gh-pages -d demo -f -b master -r git@github.com:markdown-it/markdown-it.github.io.git",
|
|
27
|
-
"browserify": "rollup -c support/rollup.config.js",
|
|
28
|
-
"benchmark-deps": "npm install --prefix benchmark/extra/ -g marked@0.3.6 commonmark@0.26.0 markdown-it/markdown-it.git#2.2.1",
|
|
29
|
-
"specsplit": "support/specsplit.js good -o test/fixtures/commonmark/good.txt && support/specsplit.js bad -o test/fixtures/commonmark/bad.txt && support/specsplit.js",
|
|
30
|
-
"todo": "grep 'TODO' -n -r ./lib 2>/dev/null",
|
|
31
|
-
"prepublishOnly": "npm run gh-demo && npm run gh-doc"
|
|
33
|
+
"bugs": {
|
|
34
|
+
"url": "https://github.com/markdown-it/markdown-it/issues"
|
|
32
35
|
},
|
|
33
|
-
"files": [
|
|
34
|
-
"index.js",
|
|
35
|
-
"bin/",
|
|
36
|
-
"lib/",
|
|
37
|
-
"dist/"
|
|
38
|
-
],
|
|
39
36
|
"dependencies": {
|
|
40
37
|
"argparse": "^2.0.1",
|
|
41
38
|
"entities": "~2.1.0",
|
|
@@ -43,6 +40,7 @@
|
|
|
43
40
|
"mdurl": "^1.0.1",
|
|
44
41
|
"uc.micro": "^1.0.5"
|
|
45
42
|
},
|
|
43
|
+
"description": "Markdown-it - modern pluggable markdown parser.",
|
|
46
44
|
"devDependencies": {
|
|
47
45
|
"@rollup/plugin-commonjs": "^16.0.0",
|
|
48
46
|
"@rollup/plugin-json": "^4.1.0",
|
|
@@ -80,8 +78,45 @@
|
|
|
80
78
|
"stylus": "^0.55.0",
|
|
81
79
|
"supertest": "^6.0.1"
|
|
82
80
|
},
|
|
81
|
+
"files": [
|
|
82
|
+
"index.js",
|
|
83
|
+
"bin/",
|
|
84
|
+
"lib/",
|
|
85
|
+
"dist/"
|
|
86
|
+
],
|
|
87
|
+
"homepage": "https://github.com/markdown-it/markdown-it#readme",
|
|
88
|
+
"keywords": [
|
|
89
|
+
"markdown",
|
|
90
|
+
"parser",
|
|
91
|
+
"commonmark",
|
|
92
|
+
"markdown-it",
|
|
93
|
+
"markdown-it-plugin"
|
|
94
|
+
],
|
|
95
|
+
"license": "MIT",
|
|
96
|
+
"main": "index.js",
|
|
83
97
|
"mocha": {
|
|
84
98
|
"inline-diffs": true,
|
|
85
99
|
"timeout": 60000
|
|
86
|
-
}
|
|
100
|
+
},
|
|
101
|
+
"name": "markdown-it",
|
|
102
|
+
"repository": {
|
|
103
|
+
"type": "git",
|
|
104
|
+
"url": "git+https://github.com/markdown-it/markdown-it.git"
|
|
105
|
+
},
|
|
106
|
+
"scripts": {
|
|
107
|
+
"benchmark-deps": "npm install --prefix benchmark/extra/ -g marked@0.3.6 commonmark@0.26.0 markdown-it/markdown-it.git#2.2.1",
|
|
108
|
+
"browserify": "rollup -c support/rollup.config.js",
|
|
109
|
+
"coverage": "npm run test && nyc report --reporter html",
|
|
110
|
+
"demo": "npm run lint && node support/build_demo.js",
|
|
111
|
+
"doc": "node support/build_doc.js",
|
|
112
|
+
"gh-demo": "npm run demo && gh-pages -d demo -f -b master -r git@github.com:markdown-it/markdown-it.github.io.git",
|
|
113
|
+
"gh-doc": "npm run doc && gh-pages -d apidoc -f",
|
|
114
|
+
"lint": "eslint .",
|
|
115
|
+
"prepublishOnly": "npm run gh-demo && npm run gh-doc",
|
|
116
|
+
"report-coveralls": "nyc --reporter=lcov mocha",
|
|
117
|
+
"specsplit": "support/specsplit.js good -o test/fixtures/commonmark/good.txt && support/specsplit.js bad -o test/fixtures/commonmark/bad.txt && support/specsplit.js",
|
|
118
|
+
"test": "npm run lint && nyc mocha && node support/specsplit.js",
|
|
119
|
+
"todo": "grep 'TODO' -n -r ./lib 2>/dev/null"
|
|
120
|
+
},
|
|
121
|
+
"version": "12.3.2"
|
|
87
122
|
}
|
|
@@ -1,19 +1,55 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
"markdown-it",
|
|
8
|
-
"markdown-it-plugin",
|
|
9
|
-
"header",
|
|
10
|
-
"anchor"
|
|
2
|
+
"_args": [
|
|
3
|
+
[
|
|
4
|
+
"markdown-it-anchor@8.6.4",
|
|
5
|
+
"/Users/fenster/dev/protobuf.js/cli"
|
|
6
|
+
]
|
|
11
7
|
],
|
|
12
|
-
"
|
|
8
|
+
"_from": "markdown-it-anchor@8.6.4",
|
|
9
|
+
"_id": "markdown-it-anchor@8.6.4",
|
|
10
|
+
"_inBundle": false,
|
|
11
|
+
"_integrity": "sha512-Ul4YVYZNxMJYALpKtu+ZRdrryYt/GlQ5CK+4l1bp/gWXOG2QWElt6AqF3Mih/wfUKdZbNAZVXGR73/n6U/8img==",
|
|
12
|
+
"_location": "/markdown-it-anchor",
|
|
13
|
+
"_phantomChildren": {},
|
|
14
|
+
"_requested": {
|
|
15
|
+
"type": "version",
|
|
16
|
+
"registry": true,
|
|
17
|
+
"raw": "markdown-it-anchor@8.6.4",
|
|
18
|
+
"name": "markdown-it-anchor",
|
|
19
|
+
"escapedName": "markdown-it-anchor",
|
|
20
|
+
"rawSpec": "8.6.4",
|
|
21
|
+
"saveSpec": null,
|
|
22
|
+
"fetchSpec": "8.6.4"
|
|
23
|
+
},
|
|
24
|
+
"_requiredBy": [
|
|
25
|
+
"/jsdoc"
|
|
26
|
+
],
|
|
27
|
+
"_resolved": "https://registry.npmjs.org/markdown-it-anchor/-/markdown-it-anchor-8.6.4.tgz",
|
|
28
|
+
"_spec": "8.6.4",
|
|
29
|
+
"_where": "/Users/fenster/dev/protobuf.js/cli",
|
|
30
|
+
"bugs": {
|
|
31
|
+
"url": "https://github.com/valeriangalliat/markdown-it-anchor/issues"
|
|
32
|
+
},
|
|
13
33
|
"contributors": [
|
|
14
|
-
|
|
15
|
-
|
|
34
|
+
{
|
|
35
|
+
"name": "Val",
|
|
36
|
+
"url": "https://val.codejam.info/"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"name": "Nagao, Fabio Zendhi",
|
|
40
|
+
"email": "nagaozen@gmail.com",
|
|
41
|
+
"url": "https://github.com/nagaozen/"
|
|
42
|
+
}
|
|
16
43
|
],
|
|
44
|
+
"description": "Header anchors for markdown-it.",
|
|
45
|
+
"devDependencies": {
|
|
46
|
+
"ava": "^3.15.0",
|
|
47
|
+
"markdown-it": "*",
|
|
48
|
+
"markdown-it-attrs": "^3.0.1",
|
|
49
|
+
"microbundle": "^0.12.0",
|
|
50
|
+
"source-map-support": "^0.5.19",
|
|
51
|
+
"standard": "^14.3.1"
|
|
52
|
+
},
|
|
17
53
|
"files": [
|
|
18
54
|
"README.md",
|
|
19
55
|
"UNLICENSE",
|
|
@@ -21,10 +57,30 @@
|
|
|
21
57
|
"runkit.js",
|
|
22
58
|
"types/*"
|
|
23
59
|
],
|
|
60
|
+
"homepage": "https://github.com/valeriangalliat/markdown-it-anchor#readme",
|
|
61
|
+
"keywords": [
|
|
62
|
+
"markdown",
|
|
63
|
+
"markdown-it",
|
|
64
|
+
"markdown-it-plugin",
|
|
65
|
+
"header",
|
|
66
|
+
"anchor"
|
|
67
|
+
],
|
|
68
|
+
"license": "Unlicense",
|
|
24
69
|
"main": "dist/markdownItAnchor.js",
|
|
70
|
+
"mangle": {
|
|
71
|
+
"regex": "^_"
|
|
72
|
+
},
|
|
25
73
|
"module": "dist/markdownItAnchor.mjs",
|
|
26
|
-
"
|
|
27
|
-
"
|
|
74
|
+
"name": "markdown-it-anchor",
|
|
75
|
+
"peerDependencies": {
|
|
76
|
+
"@types/markdown-it": "*",
|
|
77
|
+
"markdown-it": "*"
|
|
78
|
+
},
|
|
79
|
+
"repository": {
|
|
80
|
+
"type": "git",
|
|
81
|
+
"url": "git+https://github.com/valeriangalliat/markdown-it-anchor.git"
|
|
82
|
+
},
|
|
83
|
+
"runkitExampleFilename": "runkit.js",
|
|
28
84
|
"scripts": {
|
|
29
85
|
"build": "microbundle",
|
|
30
86
|
"dev": "microbundle watch",
|
|
@@ -32,22 +88,8 @@
|
|
|
32
88
|
"prepare": "npm run build && npm test",
|
|
33
89
|
"test": "npm run lint && ava test.js"
|
|
34
90
|
},
|
|
35
|
-
"devDependencies": {
|
|
36
|
-
"ava": "^3.15.0",
|
|
37
|
-
"markdown-it": "*",
|
|
38
|
-
"markdown-it-attrs": "^3.0.1",
|
|
39
|
-
"microbundle": "^0.12.0",
|
|
40
|
-
"source-map-support": "^0.5.19",
|
|
41
|
-
"standard": "^14.3.1"
|
|
42
|
-
},
|
|
43
|
-
"peerDependencies": {
|
|
44
|
-
"@types/markdown-it": "*",
|
|
45
|
-
"markdown-it": "*"
|
|
46
|
-
},
|
|
47
91
|
"source": "index.js",
|
|
92
|
+
"types": "./types/index.d.ts",
|
|
48
93
|
"unpkg": "dist/markdownItAnchor.umd.js",
|
|
49
|
-
"
|
|
50
|
-
"regex": "^_"
|
|
51
|
-
},
|
|
52
|
-
"runkitExampleFilename": "runkit.js"
|
|
94
|
+
"version": "8.6.4"
|
|
53
95
|
}
|