protobufjs 6.10.2 → 6.11.2

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.
Files changed (220) hide show
  1. package/CHANGELOG.md +28 -0
  2. package/bin/pbjs +0 -0
  3. package/bin/pbts +0 -0
  4. package/cli/README.md +163 -0
  5. package/cli/node_modules/.package-lock.json +256 -0
  6. package/cli/node_modules/acorn/CHANGELOG.md +620 -0
  7. package/cli/node_modules/acorn/LICENSE +21 -0
  8. package/cli/node_modules/acorn/README.md +269 -0
  9. package/cli/node_modules/acorn/bin/acorn +4 -0
  10. package/cli/node_modules/acorn/dist/acorn.d.ts +209 -0
  11. package/cli/node_modules/acorn/dist/acorn.js +5186 -0
  12. package/cli/node_modules/acorn/dist/acorn.js.map +1 -0
  13. package/cli/node_modules/acorn/dist/acorn.mjs +5155 -0
  14. package/cli/node_modules/acorn/dist/acorn.mjs.d.ts +2 -0
  15. package/cli/node_modules/acorn/dist/acorn.mjs.map +1 -0
  16. package/cli/node_modules/acorn/dist/bin.js +64 -0
  17. package/cli/node_modules/acorn/package.json +35 -0
  18. package/cli/node_modules/acorn-jsx/LICENSE +19 -0
  19. package/cli/node_modules/acorn-jsx/README.md +40 -0
  20. package/cli/node_modules/acorn-jsx/index.js +488 -0
  21. package/cli/node_modules/acorn-jsx/package.json +27 -0
  22. package/cli/node_modules/acorn-jsx/xhtml.js +255 -0
  23. package/cli/node_modules/balanced-match/.npmignore +5 -0
  24. package/cli/node_modules/balanced-match/LICENSE.md +21 -0
  25. package/cli/node_modules/balanced-match/README.md +91 -0
  26. package/cli/node_modules/balanced-match/index.js +59 -0
  27. package/cli/node_modules/balanced-match/package.json +49 -0
  28. package/cli/node_modules/brace-expansion/LICENSE +21 -0
  29. package/cli/node_modules/brace-expansion/README.md +129 -0
  30. package/cli/node_modules/brace-expansion/index.js +201 -0
  31. package/cli/node_modules/brace-expansion/package.json +47 -0
  32. package/cli/node_modules/concat-map/.travis.yml +4 -0
  33. package/cli/node_modules/concat-map/LICENSE +18 -0
  34. package/cli/node_modules/concat-map/README.markdown +62 -0
  35. package/cli/node_modules/concat-map/example/map.js +6 -0
  36. package/cli/node_modules/concat-map/index.js +13 -0
  37. package/cli/node_modules/concat-map/package.json +43 -0
  38. package/cli/node_modules/concat-map/test/map.js +39 -0
  39. package/cli/node_modules/deep-is/.npmignore +1 -0
  40. package/cli/node_modules/deep-is/.travis.yml +6 -0
  41. package/cli/node_modules/deep-is/LICENSE +22 -0
  42. package/cli/node_modules/deep-is/README.markdown +70 -0
  43. package/cli/node_modules/deep-is/example/cmp.js +11 -0
  44. package/cli/node_modules/deep-is/index.js +102 -0
  45. package/cli/node_modules/deep-is/package.json +61 -0
  46. package/cli/node_modules/deep-is/test/NaN.js +16 -0
  47. package/cli/node_modules/deep-is/test/cmp.js +23 -0
  48. package/cli/node_modules/deep-is/test/neg-vs-pos-0.js +15 -0
  49. package/cli/node_modules/escodegen/LICENSE.BSD +21 -0
  50. package/cli/node_modules/escodegen/README.md +84 -0
  51. package/cli/node_modules/escodegen/bin/escodegen.js +77 -0
  52. package/cli/node_modules/escodegen/bin/esgenerate.js +64 -0
  53. package/cli/node_modules/escodegen/escodegen.js +2647 -0
  54. package/cli/node_modules/escodegen/package.json +62 -0
  55. package/cli/node_modules/eslint-visitor-keys/CHANGELOG.md +25 -0
  56. package/cli/node_modules/eslint-visitor-keys/LICENSE +201 -0
  57. package/cli/node_modules/eslint-visitor-keys/README.md +98 -0
  58. package/cli/node_modules/eslint-visitor-keys/lib/index.js +81 -0
  59. package/cli/node_modules/eslint-visitor-keys/lib/visitor-keys.json +284 -0
  60. package/cli/node_modules/eslint-visitor-keys/package.json +40 -0
  61. package/cli/node_modules/espree/CHANGELOG.md +509 -0
  62. package/cli/node_modules/espree/LICENSE +25 -0
  63. package/cli/node_modules/espree/README.md +233 -0
  64. package/cli/node_modules/espree/espree.js +177 -0
  65. package/cli/node_modules/espree/lib/ast-node-types.js +96 -0
  66. package/cli/node_modules/espree/lib/espree.js +286 -0
  67. package/cli/node_modules/espree/lib/features.js +29 -0
  68. package/cli/node_modules/espree/lib/options.js +106 -0
  69. package/cli/node_modules/espree/lib/token-translator.js +263 -0
  70. package/cli/node_modules/espree/lib/visitor-keys.js +123 -0
  71. package/cli/node_modules/espree/package.json +64 -0
  72. package/cli/node_modules/esprima/ChangeLog +235 -0
  73. package/cli/node_modules/esprima/LICENSE.BSD +21 -0
  74. package/cli/node_modules/esprima/README.md +46 -0
  75. package/cli/node_modules/esprima/bin/esparse.js +139 -0
  76. package/cli/node_modules/esprima/bin/esvalidate.js +236 -0
  77. package/cli/node_modules/esprima/dist/esprima.js +6709 -0
  78. package/cli/node_modules/esprima/package.json +112 -0
  79. package/cli/node_modules/estraverse/.jshintrc +16 -0
  80. package/cli/node_modules/estraverse/LICENSE.BSD +19 -0
  81. package/cli/node_modules/estraverse/README.md +153 -0
  82. package/cli/node_modules/estraverse/estraverse.js +801 -0
  83. package/cli/node_modules/estraverse/gulpfile.js +70 -0
  84. package/cli/node_modules/estraverse/package.json +40 -0
  85. package/cli/node_modules/esutils/LICENSE.BSD +19 -0
  86. package/cli/node_modules/esutils/README.md +174 -0
  87. package/cli/node_modules/esutils/lib/ast.js +144 -0
  88. package/cli/node_modules/esutils/lib/code.js +135 -0
  89. package/cli/node_modules/esutils/lib/keyword.js +165 -0
  90. package/cli/node_modules/esutils/lib/utils.js +33 -0
  91. package/cli/node_modules/esutils/package.json +44 -0
  92. package/cli/node_modules/fast-levenshtein/LICENSE.md +25 -0
  93. package/cli/node_modules/fast-levenshtein/README.md +104 -0
  94. package/cli/node_modules/fast-levenshtein/levenshtein.js +136 -0
  95. package/cli/node_modules/fast-levenshtein/package.json +39 -0
  96. package/cli/node_modules/fs.realpath/LICENSE +43 -0
  97. package/cli/node_modules/fs.realpath/README.md +33 -0
  98. package/cli/node_modules/fs.realpath/index.js +66 -0
  99. package/cli/node_modules/fs.realpath/old.js +303 -0
  100. package/cli/node_modules/fs.realpath/package.json +26 -0
  101. package/cli/node_modules/glob/LICENSE +21 -0
  102. package/cli/node_modules/glob/README.md +375 -0
  103. package/cli/node_modules/glob/changelog.md +67 -0
  104. package/cli/node_modules/glob/common.js +240 -0
  105. package/cli/node_modules/glob/glob.js +790 -0
  106. package/cli/node_modules/glob/package.json +46 -0
  107. package/cli/node_modules/glob/sync.js +486 -0
  108. package/cli/node_modules/inflight/LICENSE +15 -0
  109. package/cli/node_modules/inflight/README.md +37 -0
  110. package/cli/node_modules/inflight/inflight.js +54 -0
  111. package/cli/node_modules/inflight/package.json +29 -0
  112. package/cli/node_modules/inherits/LICENSE +16 -0
  113. package/cli/node_modules/inherits/README.md +42 -0
  114. package/cli/node_modules/inherits/inherits.js +9 -0
  115. package/cli/node_modules/inherits/inherits_browser.js +27 -0
  116. package/cli/node_modules/inherits/package.json +29 -0
  117. package/cli/node_modules/levn/LICENSE +22 -0
  118. package/cli/node_modules/levn/README.md +196 -0
  119. package/cli/node_modules/levn/lib/cast.js +298 -0
  120. package/cli/node_modules/levn/lib/coerce.js +285 -0
  121. package/cli/node_modules/levn/lib/index.js +22 -0
  122. package/cli/node_modules/levn/lib/parse-string.js +113 -0
  123. package/cli/node_modules/levn/lib/parse.js +102 -0
  124. package/cli/node_modules/levn/package.json +47 -0
  125. package/cli/node_modules/minimatch/LICENSE +15 -0
  126. package/cli/node_modules/minimatch/README.md +209 -0
  127. package/cli/node_modules/minimatch/minimatch.js +923 -0
  128. package/cli/node_modules/minimatch/package.json +30 -0
  129. package/cli/node_modules/once/LICENSE +15 -0
  130. package/cli/node_modules/once/README.md +79 -0
  131. package/cli/node_modules/once/once.js +42 -0
  132. package/cli/node_modules/once/package.json +33 -0
  133. package/cli/node_modules/optionator/CHANGELOG.md +56 -0
  134. package/cli/node_modules/optionator/LICENSE +22 -0
  135. package/cli/node_modules/optionator/README.md +238 -0
  136. package/cli/node_modules/optionator/lib/help.js +260 -0
  137. package/cli/node_modules/optionator/lib/index.js +465 -0
  138. package/cli/node_modules/optionator/lib/util.js +54 -0
  139. package/cli/node_modules/optionator/package.json +44 -0
  140. package/cli/node_modules/path-is-absolute/index.js +20 -0
  141. package/cli/node_modules/path-is-absolute/license +21 -0
  142. package/cli/node_modules/path-is-absolute/package.json +43 -0
  143. package/cli/node_modules/path-is-absolute/readme.md +59 -0
  144. package/cli/node_modules/prelude-ls/CHANGELOG.md +99 -0
  145. package/cli/node_modules/prelude-ls/LICENSE +22 -0
  146. package/cli/node_modules/prelude-ls/README.md +15 -0
  147. package/cli/node_modules/prelude-ls/lib/Func.js +65 -0
  148. package/cli/node_modules/prelude-ls/lib/List.js +686 -0
  149. package/cli/node_modules/prelude-ls/lib/Num.js +130 -0
  150. package/cli/node_modules/prelude-ls/lib/Obj.js +154 -0
  151. package/cli/node_modules/prelude-ls/lib/Str.js +92 -0
  152. package/cli/node_modules/prelude-ls/lib/index.js +178 -0
  153. package/cli/node_modules/prelude-ls/package.json +52 -0
  154. package/cli/node_modules/rimraf/CHANGELOG.md +65 -0
  155. package/cli/node_modules/rimraf/LICENSE +15 -0
  156. package/cli/node_modules/rimraf/README.md +101 -0
  157. package/cli/node_modules/rimraf/bin.js +68 -0
  158. package/cli/node_modules/rimraf/package.json +32 -0
  159. package/cli/node_modules/rimraf/rimraf.js +360 -0
  160. package/cli/node_modules/source-map/CHANGELOG.md +301 -0
  161. package/cli/node_modules/source-map/LICENSE +28 -0
  162. package/cli/node_modules/source-map/README.md +742 -0
  163. package/cli/node_modules/source-map/dist/source-map.debug.js +3234 -0
  164. package/cli/node_modules/source-map/dist/source-map.js +3233 -0
  165. package/cli/node_modules/source-map/dist/source-map.min.js +2 -0
  166. package/cli/node_modules/source-map/dist/source-map.min.js.map +1 -0
  167. package/cli/node_modules/source-map/lib/array-set.js +121 -0
  168. package/cli/node_modules/source-map/lib/base64-vlq.js +140 -0
  169. package/cli/node_modules/source-map/lib/base64.js +67 -0
  170. package/cli/node_modules/source-map/lib/binary-search.js +111 -0
  171. package/cli/node_modules/source-map/lib/mapping-list.js +79 -0
  172. package/cli/node_modules/source-map/lib/quick-sort.js +114 -0
  173. package/cli/node_modules/source-map/lib/source-map-consumer.js +1145 -0
  174. package/cli/node_modules/source-map/lib/source-map-generator.js +425 -0
  175. package/cli/node_modules/source-map/lib/source-node.js +413 -0
  176. package/cli/node_modules/source-map/lib/util.js +488 -0
  177. package/cli/node_modules/source-map/package.json +73 -0
  178. package/cli/node_modules/source-map/source-map.d.ts +98 -0
  179. package/cli/node_modules/source-map/source-map.js +8 -0
  180. package/cli/node_modules/tmp/CHANGELOG.md +288 -0
  181. package/cli/node_modules/tmp/LICENSE +21 -0
  182. package/cli/node_modules/tmp/README.md +365 -0
  183. package/cli/node_modules/tmp/lib/tmp.js +780 -0
  184. package/cli/node_modules/tmp/package.json +58 -0
  185. package/cli/node_modules/type-check/LICENSE +22 -0
  186. package/cli/node_modules/type-check/README.md +210 -0
  187. package/cli/node_modules/type-check/lib/check.js +126 -0
  188. package/cli/node_modules/type-check/lib/index.js +16 -0
  189. package/cli/node_modules/type-check/lib/parse-type.js +196 -0
  190. package/cli/node_modules/type-check/package.json +40 -0
  191. package/cli/node_modules/word-wrap/LICENSE +21 -0
  192. package/cli/node_modules/word-wrap/README.md +182 -0
  193. package/cli/node_modules/word-wrap/index.d.ts +50 -0
  194. package/cli/node_modules/word-wrap/index.js +46 -0
  195. package/cli/node_modules/word-wrap/package.json +77 -0
  196. package/cli/node_modules/wrappy/LICENSE +15 -0
  197. package/cli/node_modules/wrappy/README.md +36 -0
  198. package/cli/node_modules/wrappy/package.json +29 -0
  199. package/cli/node_modules/wrappy/wrappy.js +33 -0
  200. package/cli/package.json +1 -0
  201. package/cli/pbjs.js +3 -1
  202. package/cli/targets/static.js +7 -1
  203. package/dist/light/protobuf.js +17 -5
  204. package/dist/light/protobuf.js.map +1 -1
  205. package/dist/light/protobuf.min.js +3 -3
  206. package/dist/light/protobuf.min.js.map +1 -1
  207. package/dist/minimal/protobuf.js +2 -2
  208. package/dist/minimal/protobuf.min.js +3 -3
  209. package/dist/minimal/protobuf.min.js.map +1 -1
  210. package/dist/protobuf.js +54 -9
  211. package/dist/protobuf.js.map +1 -1
  212. package/dist/protobuf.min.js +3 -3
  213. package/dist/protobuf.min.js.map +1 -1
  214. package/index.d.ts +11 -1
  215. package/package.json +2 -2
  216. package/src/field.js +3 -0
  217. package/src/namespace.js +2 -1
  218. package/src/parse.js +37 -4
  219. package/package-lock.json +0 -8922
  220. package/scripts/changelog.js +0 -150
@@ -0,0 +1,465 @@
1
+ // Generated by LiveScript 1.6.0
2
+ (function(){
3
+ var VERSION, ref$, id, map, compact, any, groupBy, partition, chars, isItNaN, keys, Obj, camelize, deepIs, closestString, nameToRaw, dasherize, naturalJoin, generateHelp, generateHelpForOption, parsedTypeCheck, parseType, parseLevn, camelizeKeys, parseString, main, toString$ = {}.toString, slice$ = [].slice, arrayFrom$ = Array.from || function(x){return slice$.call(x);};
4
+ VERSION = '0.8.3';
5
+ ref$ = require('prelude-ls'), id = ref$.id, map = ref$.map, compact = ref$.compact, any = ref$.any, groupBy = ref$.groupBy, partition = ref$.partition, chars = ref$.chars, isItNaN = ref$.isItNaN, keys = ref$.keys, Obj = ref$.Obj, camelize = ref$.camelize;
6
+ deepIs = require('deep-is');
7
+ ref$ = require('./util'), closestString = ref$.closestString, nameToRaw = ref$.nameToRaw, dasherize = ref$.dasherize, naturalJoin = ref$.naturalJoin;
8
+ ref$ = require('./help'), generateHelp = ref$.generateHelp, generateHelpForOption = ref$.generateHelpForOption;
9
+ ref$ = require('type-check'), parsedTypeCheck = ref$.parsedTypeCheck, parseType = ref$.parseType;
10
+ parseLevn = require('levn').parsedTypeParse;
11
+ camelizeKeys = function(obj){
12
+ var key, value, resultObj$ = {};
13
+ for (key in obj) {
14
+ value = obj[key];
15
+ resultObj$[camelize(key)] = value;
16
+ }
17
+ return resultObj$;
18
+ };
19
+ parseString = function(string){
20
+ var assignOpt, regex, replaceRegex, result;
21
+ assignOpt = '--?[a-zA-Z][-a-z-A-Z0-9]*=';
22
+ regex = RegExp('(?:' + assignOpt + ')?(?:\'(?:\\\\\'|[^\'])+\'|"(?:\\\\"|[^"])+")|[^\'"\\s]+', 'g');
23
+ replaceRegex = RegExp('^(' + assignOpt + ')?[\'"]([\\s\\S]*)[\'"]$');
24
+ result = map(function(it){
25
+ return it.replace(replaceRegex, '$1$2');
26
+ }, string.match(regex) || []);
27
+ return result;
28
+ };
29
+ main = function(libOptions){
30
+ var opts, defaults, required, traverse, getOption, parse;
31
+ opts = {};
32
+ defaults = {};
33
+ required = [];
34
+ if (toString$.call(libOptions.stdout).slice(8, -1) === 'Undefined') {
35
+ libOptions.stdout = process.stdout;
36
+ }
37
+ libOptions.positionalAnywhere == null && (libOptions.positionalAnywhere = true);
38
+ libOptions.typeAliases == null && (libOptions.typeAliases = {});
39
+ libOptions.defaults == null && (libOptions.defaults = {});
40
+ if (libOptions.concatRepeatedArrays != null) {
41
+ libOptions.defaults.concatRepeatedArrays = libOptions.concatRepeatedArrays;
42
+ }
43
+ if (libOptions.mergeRepeatedObjects != null) {
44
+ libOptions.defaults.mergeRepeatedObjects = libOptions.mergeRepeatedObjects;
45
+ }
46
+ traverse = function(options){
47
+ var i$, len$, option, name, k, ref$, v, type, that, e, parsedPossibilities, parsedType, j$, len1$, possibility, rawDependsType, dependsOpts, dependsType, cra, alias, shortNames, longNames;
48
+ if (toString$.call(options).slice(8, -1) !== 'Array') {
49
+ throw new Error('No options defined.');
50
+ }
51
+ for (i$ = 0, len$ = options.length; i$ < len$; ++i$) {
52
+ option = options[i$];
53
+ if (option.heading == null) {
54
+ name = option.option;
55
+ if (opts[name] != null) {
56
+ throw new Error("Option '" + name + "' already defined.");
57
+ }
58
+ for (k in ref$ = libOptions.defaults) {
59
+ v = ref$[k];
60
+ option[k] == null && (option[k] = v);
61
+ }
62
+ if (option.type === 'Boolean') {
63
+ option.boolean == null && (option.boolean = true);
64
+ }
65
+ if (option.parsedType == null) {
66
+ if (!option.type) {
67
+ throw new Error("No type defined for option '" + name + "'.");
68
+ }
69
+ try {
70
+ type = (that = libOptions.typeAliases[option.type]) != null
71
+ ? that
72
+ : option.type;
73
+ option.parsedType = parseType(type);
74
+ } catch (e$) {
75
+ e = e$;
76
+ throw new Error("Option '" + name + "': Error parsing type '" + option.type + "': " + e.message);
77
+ }
78
+ }
79
+ if (option['default']) {
80
+ try {
81
+ defaults[name] = parseLevn(option.parsedType, option['default']);
82
+ } catch (e$) {
83
+ e = e$;
84
+ throw new Error("Option '" + name + "': Error parsing default value '" + option['default'] + "' for type '" + option.type + "': " + e.message);
85
+ }
86
+ }
87
+ if (option['enum'] && !option.parsedPossiblities) {
88
+ parsedPossibilities = [];
89
+ parsedType = option.parsedType;
90
+ for (j$ = 0, len1$ = (ref$ = option['enum']).length; j$ < len1$; ++j$) {
91
+ possibility = ref$[j$];
92
+ try {
93
+ parsedPossibilities.push(parseLevn(parsedType, possibility));
94
+ } catch (e$) {
95
+ e = e$;
96
+ throw new Error("Option '" + name + "': Error parsing enum value '" + possibility + "' for type '" + option.type + "': " + e.message);
97
+ }
98
+ }
99
+ option.parsedPossibilities = parsedPossibilities;
100
+ }
101
+ if (that = option.dependsOn) {
102
+ if (that.length) {
103
+ ref$ = [].concat(option.dependsOn), rawDependsType = ref$[0], dependsOpts = slice$.call(ref$, 1);
104
+ dependsType = rawDependsType.toLowerCase();
105
+ if (dependsOpts.length) {
106
+ if (dependsType === 'and' || dependsType === 'or') {
107
+ option.dependsOn = [dependsType].concat(arrayFrom$(dependsOpts));
108
+ } else {
109
+ throw new Error("Option '" + name + "': If you have more than one dependency, you must specify either 'and' or 'or'");
110
+ }
111
+ } else {
112
+ if ((ref$ = dependsType.toLowerCase()) === 'and' || ref$ === 'or') {
113
+ option.dependsOn = null;
114
+ } else {
115
+ option.dependsOn = ['and', rawDependsType];
116
+ }
117
+ }
118
+ } else {
119
+ option.dependsOn = null;
120
+ }
121
+ }
122
+ if (option.required) {
123
+ required.push(name);
124
+ }
125
+ opts[name] = option;
126
+ if (option.concatRepeatedArrays != null) {
127
+ cra = option.concatRepeatedArrays;
128
+ if ('Boolean' === toString$.call(cra).slice(8, -1)) {
129
+ option.concatRepeatedArrays = [cra, {}];
130
+ } else if (cra.length === 1) {
131
+ option.concatRepeatedArrays = [cra[0], {}];
132
+ } else if (cra.length !== 2) {
133
+ throw new Error("Invalid setting for concatRepeatedArrays");
134
+ }
135
+ }
136
+ if (option.alias || option.aliases) {
137
+ if (name === 'NUM') {
138
+ throw new Error("-NUM option can't have aliases.");
139
+ }
140
+ if (option.alias) {
141
+ option.aliases == null && (option.aliases = [].concat(option.alias));
142
+ }
143
+ for (j$ = 0, len1$ = (ref$ = option.aliases).length; j$ < len1$; ++j$) {
144
+ alias = ref$[j$];
145
+ if (opts[alias] != null) {
146
+ throw new Error("Option '" + alias + "' already defined.");
147
+ }
148
+ opts[alias] = option;
149
+ }
150
+ ref$ = partition(fn$, option.aliases), shortNames = ref$[0], longNames = ref$[1];
151
+ option.shortNames == null && (option.shortNames = shortNames);
152
+ option.longNames == null && (option.longNames = longNames);
153
+ }
154
+ if ((!option.aliases || option.shortNames.length === 0) && option.type === 'Boolean' && option['default'] === 'true') {
155
+ option.negateName = true;
156
+ }
157
+ }
158
+ }
159
+ function fn$(it){
160
+ return it.length === 1;
161
+ }
162
+ };
163
+ traverse(libOptions.options);
164
+ getOption = function(name){
165
+ var opt, possiblyMeant;
166
+ opt = opts[name];
167
+ if (opt == null) {
168
+ possiblyMeant = closestString(keys(opts), name);
169
+ throw new Error("Invalid option '" + nameToRaw(name) + "'" + (possiblyMeant ? " - perhaps you meant '" + nameToRaw(possiblyMeant) + "'?" : '.'));
170
+ }
171
+ return opt;
172
+ };
173
+ parse = function(input, arg$){
174
+ var slice, obj, positional, restPositional, overrideRequired, prop, setValue, setDefaults, checkRequired, mutuallyExclusiveError, checkMutuallyExclusive, checkDependency, checkDependencies, checkProp, args, key, value, option, ref$, i$, len$, arg, that, result, short, argName, usingAssign, val, flags, len, j$, len1$, i, flag, opt, name, valPrime, negated, noedName;
175
+ slice = (arg$ != null
176
+ ? arg$
177
+ : {}).slice;
178
+ obj = {};
179
+ positional = [];
180
+ restPositional = false;
181
+ overrideRequired = false;
182
+ prop = null;
183
+ setValue = function(name, value){
184
+ var opt, val, cra, e, currentType;
185
+ opt = getOption(name);
186
+ if (opt.boolean) {
187
+ val = value;
188
+ } else {
189
+ try {
190
+ cra = opt.concatRepeatedArrays;
191
+ if (cra != null && cra[0] && cra[1].oneValuePerFlag && opt.parsedType.length === 1 && opt.parsedType[0].structure === 'array') {
192
+ val = [parseLevn(opt.parsedType[0].of, value)];
193
+ } else {
194
+ val = parseLevn(opt.parsedType, value);
195
+ }
196
+ } catch (e$) {
197
+ e = e$;
198
+ throw new Error("Invalid value for option '" + name + "' - expected type " + opt.type + ", received value: " + value + ".");
199
+ }
200
+ if (opt['enum'] && !any(function(it){
201
+ return deepIs(it, val);
202
+ }, opt.parsedPossibilities)) {
203
+ throw new Error("Option " + name + ": '" + val + "' not one of " + naturalJoin(opt['enum']) + ".");
204
+ }
205
+ }
206
+ currentType = toString$.call(obj[name]).slice(8, -1);
207
+ if (obj[name] != null) {
208
+ if (opt.concatRepeatedArrays != null && opt.concatRepeatedArrays[0] && currentType === 'Array') {
209
+ obj[name] = obj[name].concat(val);
210
+ } else if (opt.mergeRepeatedObjects && currentType === 'Object') {
211
+ import$(obj[name], val);
212
+ } else {
213
+ obj[name] = val;
214
+ }
215
+ } else {
216
+ obj[name] = val;
217
+ }
218
+ if (opt.restPositional) {
219
+ restPositional = true;
220
+ }
221
+ if (opt.overrideRequired) {
222
+ overrideRequired = true;
223
+ }
224
+ };
225
+ setDefaults = function(){
226
+ var name, ref$, value;
227
+ for (name in ref$ = defaults) {
228
+ value = ref$[name];
229
+ if (obj[name] == null) {
230
+ obj[name] = value;
231
+ }
232
+ }
233
+ };
234
+ checkRequired = function(){
235
+ var i$, ref$, len$, name;
236
+ if (overrideRequired) {
237
+ return;
238
+ }
239
+ for (i$ = 0, len$ = (ref$ = required).length; i$ < len$; ++i$) {
240
+ name = ref$[i$];
241
+ if (!obj[name]) {
242
+ throw new Error("Option " + nameToRaw(name) + " is required.");
243
+ }
244
+ }
245
+ };
246
+ mutuallyExclusiveError = function(first, second){
247
+ throw new Error("The options " + nameToRaw(first) + " and " + nameToRaw(second) + " are mutually exclusive - you cannot use them at the same time.");
248
+ };
249
+ checkMutuallyExclusive = function(){
250
+ var rules, i$, len$, rule, present, j$, len1$, element, k$, len2$, opt;
251
+ rules = libOptions.mutuallyExclusive;
252
+ if (!rules) {
253
+ return;
254
+ }
255
+ for (i$ = 0, len$ = rules.length; i$ < len$; ++i$) {
256
+ rule = rules[i$];
257
+ present = null;
258
+ for (j$ = 0, len1$ = rule.length; j$ < len1$; ++j$) {
259
+ element = rule[j$];
260
+ if (toString$.call(element).slice(8, -1) === 'Array') {
261
+ for (k$ = 0, len2$ = element.length; k$ < len2$; ++k$) {
262
+ opt = element[k$];
263
+ if (opt in obj) {
264
+ if (present != null) {
265
+ mutuallyExclusiveError(present, opt);
266
+ } else {
267
+ present = opt;
268
+ break;
269
+ }
270
+ }
271
+ }
272
+ } else {
273
+ if (element in obj) {
274
+ if (present != null) {
275
+ mutuallyExclusiveError(present, element);
276
+ } else {
277
+ present = element;
278
+ }
279
+ }
280
+ }
281
+ }
282
+ }
283
+ };
284
+ checkDependency = function(option){
285
+ var dependsOn, type, targetOptionNames, i$, len$, targetOptionName, targetOption;
286
+ dependsOn = option.dependsOn;
287
+ if (!dependsOn || option.dependenciesMet) {
288
+ return true;
289
+ }
290
+ type = dependsOn[0], targetOptionNames = slice$.call(dependsOn, 1);
291
+ for (i$ = 0, len$ = targetOptionNames.length; i$ < len$; ++i$) {
292
+ targetOptionName = targetOptionNames[i$];
293
+ targetOption = obj[targetOptionName];
294
+ if (targetOption && checkDependency(targetOption)) {
295
+ if (type === 'or') {
296
+ return true;
297
+ }
298
+ } else if (type === 'and') {
299
+ throw new Error("The option '" + option.option + "' did not have its dependencies met.");
300
+ }
301
+ }
302
+ if (type === 'and') {
303
+ return true;
304
+ } else {
305
+ throw new Error("The option '" + option.option + "' did not meet any of its dependencies.");
306
+ }
307
+ };
308
+ checkDependencies = function(){
309
+ var name;
310
+ for (name in obj) {
311
+ checkDependency(opts[name]);
312
+ }
313
+ };
314
+ checkProp = function(){
315
+ if (prop) {
316
+ throw new Error("Value for '" + prop + "' of type '" + getOption(prop).type + "' required.");
317
+ }
318
+ };
319
+ switch (toString$.call(input).slice(8, -1)) {
320
+ case 'String':
321
+ args = parseString(input.slice(slice != null ? slice : 0));
322
+ break;
323
+ case 'Array':
324
+ args = input.slice(slice != null ? slice : 2);
325
+ break;
326
+ case 'Object':
327
+ obj = {};
328
+ for (key in input) {
329
+ value = input[key];
330
+ if (key !== '_') {
331
+ option = getOption(dasherize(key));
332
+ if (parsedTypeCheck(option.parsedType, value)) {
333
+ obj[option.option] = value;
334
+ } else {
335
+ throw new Error("Option '" + option.option + "': Invalid type for '" + value + "' - expected type '" + option.type + "'.");
336
+ }
337
+ }
338
+ }
339
+ checkMutuallyExclusive();
340
+ checkDependencies();
341
+ setDefaults();
342
+ checkRequired();
343
+ return ref$ = camelizeKeys(obj), ref$._ = input._ || [], ref$;
344
+ default:
345
+ throw new Error("Invalid argument to 'parse': " + input + ".");
346
+ }
347
+ for (i$ = 0, len$ = args.length; i$ < len$; ++i$) {
348
+ arg = args[i$];
349
+ if (arg === '--') {
350
+ restPositional = true;
351
+ } else if (restPositional) {
352
+ positional.push(arg);
353
+ } else {
354
+ if (that = arg.match(/^(--?)([a-zA-Z][-a-zA-Z0-9]*)(=)?(.*)?$/)) {
355
+ result = that;
356
+ checkProp();
357
+ short = result[1].length === 1;
358
+ argName = result[2];
359
+ usingAssign = result[3] != null;
360
+ val = result[4];
361
+ if (usingAssign && val == null) {
362
+ throw new Error("No value for '" + argName + "' specified.");
363
+ }
364
+ if (short) {
365
+ flags = chars(argName);
366
+ len = flags.length;
367
+ for (j$ = 0, len1$ = flags.length; j$ < len1$; ++j$) {
368
+ i = j$;
369
+ flag = flags[j$];
370
+ opt = getOption(flag);
371
+ name = opt.option;
372
+ if (restPositional) {
373
+ positional.push(flag);
374
+ } else if (i === len - 1) {
375
+ if (usingAssign) {
376
+ valPrime = opt.boolean ? parseLevn([{
377
+ type: 'Boolean'
378
+ }], val) : val;
379
+ setValue(name, valPrime);
380
+ } else if (opt.boolean) {
381
+ setValue(name, true);
382
+ } else {
383
+ prop = name;
384
+ }
385
+ } else if (opt.boolean) {
386
+ setValue(name, true);
387
+ } else {
388
+ throw new Error("Can't set argument '" + flag + "' when not last flag in a group of short flags.");
389
+ }
390
+ }
391
+ } else {
392
+ negated = false;
393
+ if (that = argName.match(/^no-(.+)$/)) {
394
+ negated = true;
395
+ noedName = that[1];
396
+ opt = getOption(noedName);
397
+ } else {
398
+ opt = getOption(argName);
399
+ }
400
+ name = opt.option;
401
+ if (opt.boolean) {
402
+ valPrime = usingAssign ? parseLevn([{
403
+ type: 'Boolean'
404
+ }], val) : true;
405
+ if (negated) {
406
+ setValue(name, !valPrime);
407
+ } else {
408
+ setValue(name, valPrime);
409
+ }
410
+ } else {
411
+ if (negated) {
412
+ throw new Error("Only use 'no-' prefix for Boolean options, not with '" + noedName + "'.");
413
+ }
414
+ if (usingAssign) {
415
+ setValue(name, val);
416
+ } else {
417
+ prop = name;
418
+ }
419
+ }
420
+ }
421
+ } else if (that = arg.match(/^-([0-9]+(?:\.[0-9]+)?)$/)) {
422
+ opt = opts.NUM;
423
+ if (!opt) {
424
+ throw new Error('No -NUM option defined.');
425
+ }
426
+ setValue(opt.option, that[1]);
427
+ } else {
428
+ if (prop) {
429
+ setValue(prop, arg);
430
+ prop = null;
431
+ } else {
432
+ positional.push(arg);
433
+ if (!libOptions.positionalAnywhere) {
434
+ restPositional = true;
435
+ }
436
+ }
437
+ }
438
+ }
439
+ }
440
+ checkProp();
441
+ checkMutuallyExclusive();
442
+ checkDependencies();
443
+ setDefaults();
444
+ checkRequired();
445
+ return ref$ = camelizeKeys(obj), ref$._ = positional, ref$;
446
+ };
447
+ return {
448
+ parse: parse,
449
+ parseArgv: function(it){
450
+ return parse(it, {
451
+ slice: 2
452
+ });
453
+ },
454
+ generateHelp: generateHelp(libOptions),
455
+ generateHelpForOption: generateHelpForOption(getOption, libOptions)
456
+ };
457
+ };
458
+ main.VERSION = VERSION;
459
+ module.exports = main;
460
+ function import$(obj, src){
461
+ var own = {}.hasOwnProperty;
462
+ for (var key in src) if (own.call(src, key)) obj[key] = src[key];
463
+ return obj;
464
+ }
465
+ }).call(this);
@@ -0,0 +1,54 @@
1
+ // Generated by LiveScript 1.6.0
2
+ (function(){
3
+ var prelude, map, sortBy, fl, closestString, nameToRaw, dasherize, naturalJoin;
4
+ prelude = require('prelude-ls'), map = prelude.map, sortBy = prelude.sortBy;
5
+ fl = require('fast-levenshtein');
6
+ closestString = function(possibilities, input){
7
+ var distances, ref$, string, distance;
8
+ if (!possibilities.length) {
9
+ return;
10
+ }
11
+ distances = map(function(it){
12
+ var ref$, longer, shorter;
13
+ ref$ = input.length > it.length
14
+ ? [input, it]
15
+ : [it, input], longer = ref$[0], shorter = ref$[1];
16
+ return {
17
+ string: it,
18
+ distance: fl.get(longer, shorter)
19
+ };
20
+ })(
21
+ possibilities);
22
+ ref$ = sortBy(function(it){
23
+ return it.distance;
24
+ }, distances)[0], string = ref$.string, distance = ref$.distance;
25
+ return string;
26
+ };
27
+ nameToRaw = function(name){
28
+ if (name.length === 1 || name === 'NUM') {
29
+ return "-" + name;
30
+ } else {
31
+ return "--" + name;
32
+ }
33
+ };
34
+ dasherize = function(string){
35
+ if (/^[A-Z]/.test(string)) {
36
+ return string;
37
+ } else {
38
+ return prelude.dasherize(string);
39
+ }
40
+ };
41
+ naturalJoin = function(array){
42
+ if (array.length < 3) {
43
+ return array.join(' or ');
44
+ } else {
45
+ return array.slice(0, -1).join(', ') + ", or " + array[array.length - 1];
46
+ }
47
+ };
48
+ module.exports = {
49
+ closestString: closestString,
50
+ nameToRaw: nameToRaw,
51
+ dasherize: dasherize,
52
+ naturalJoin: naturalJoin
53
+ };
54
+ }).call(this);
@@ -0,0 +1,44 @@
1
+ {
2
+ "name": "optionator",
3
+ "version": "0.8.3",
4
+ "author": "George Zahariev <z@georgezahariev.com>",
5
+ "description": "option parsing and help generation",
6
+ "homepage": "https://github.com/gkz/optionator",
7
+ "keywords": [
8
+ "options",
9
+ "flags",
10
+ "option parsing",
11
+ "cli"
12
+ ],
13
+ "files": [
14
+ "lib",
15
+ "README.md",
16
+ "LICENSE"
17
+ ],
18
+ "main": "./lib/",
19
+ "bugs": "https://github.com/gkz/optionator/issues",
20
+ "license": "MIT",
21
+ "engines": {
22
+ "node": ">= 0.8.0"
23
+ },
24
+ "repository": {
25
+ "type": "git",
26
+ "url": "git://github.com/gkz/optionator.git"
27
+ },
28
+ "scripts": {
29
+ "test": "make test"
30
+ },
31
+ "dependencies": {
32
+ "prelude-ls": "~1.1.2",
33
+ "deep-is": "~0.1.3",
34
+ "word-wrap": "~1.2.3",
35
+ "type-check": "~0.3.2",
36
+ "levn": "~0.3.0",
37
+ "fast-levenshtein": "~2.0.6"
38
+ },
39
+ "devDependencies": {
40
+ "livescript": "~1.6.0",
41
+ "mocha": "~6.2.2",
42
+ "istanbul": "~0.4.5"
43
+ }
44
+ }
@@ -0,0 +1,20 @@
1
+ 'use strict';
2
+
3
+ function posix(path) {
4
+ return path.charAt(0) === '/';
5
+ }
6
+
7
+ function win32(path) {
8
+ // https://github.com/nodejs/node/blob/b3fcc245fb25539909ef1d5eaa01dbf92e168633/lib/path.js#L56
9
+ var splitDeviceRe = /^([a-zA-Z]:|[\\\/]{2}[^\\\/]+[\\\/]+[^\\\/]+)?([\\\/])?([\s\S]*?)$/;
10
+ var result = splitDeviceRe.exec(path);
11
+ var device = result[1] || '';
12
+ var isUnc = Boolean(device && device.charAt(1) !== ':');
13
+
14
+ // UNC paths are always absolute
15
+ return Boolean(result[2] || isUnc);
16
+ }
17
+
18
+ module.exports = process.platform === 'win32' ? win32 : posix;
19
+ module.exports.posix = posix;
20
+ module.exports.win32 = win32;
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,43 @@
1
+ {
2
+ "name": "path-is-absolute",
3
+ "version": "1.0.1",
4
+ "description": "Node.js 0.12 path.isAbsolute() ponyfill",
5
+ "license": "MIT",
6
+ "repository": "sindresorhus/path-is-absolute",
7
+ "author": {
8
+ "name": "Sindre Sorhus",
9
+ "email": "sindresorhus@gmail.com",
10
+ "url": "sindresorhus.com"
11
+ },
12
+ "engines": {
13
+ "node": ">=0.10.0"
14
+ },
15
+ "scripts": {
16
+ "test": "xo && node test.js"
17
+ },
18
+ "files": [
19
+ "index.js"
20
+ ],
21
+ "keywords": [
22
+ "path",
23
+ "paths",
24
+ "file",
25
+ "dir",
26
+ "absolute",
27
+ "isabsolute",
28
+ "is-absolute",
29
+ "built-in",
30
+ "util",
31
+ "utils",
32
+ "core",
33
+ "ponyfill",
34
+ "polyfill",
35
+ "shim",
36
+ "is",
37
+ "detect",
38
+ "check"
39
+ ],
40
+ "devDependencies": {
41
+ "xo": "^0.16.0"
42
+ }
43
+ }