proxy_chain_rb 0.1.0 → 0.1.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 (49) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +16 -16
  3. data/README.md +14 -5
  4. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/.yarn-integrity +23 -0
  5. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/bluebird/README.md +1 -1
  6. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/bluebird/js/browser/bluebird.core.js +254 -121
  7. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/bluebird/js/browser/bluebird.core.min.js +3 -3
  8. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/bluebird/js/browser/bluebird.js +284 -129
  9. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/bluebird/js/browser/bluebird.min.js +4 -4
  10. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/bluebird/js/release/async.js +3 -48
  11. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/bluebird/js/release/debuggability.js +145 -27
  12. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/bluebird/js/release/join.js +4 -7
  13. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/bluebird/js/release/map.js +10 -3
  14. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/bluebird/js/release/promise.js +58 -28
  15. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/bluebird/js/release/promise_array.js +1 -0
  16. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/bluebird/js/release/reduce.js +16 -5
  17. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/bluebird/js/release/settle.js +4 -0
  18. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/bluebird/js/release/util.js +39 -7
  19. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/bluebird/package.json +39 -63
  20. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/commander/CHANGELOG.md +11 -0
  21. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/commander/index.js +1 -1
  22. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/commander/package.json +20 -52
  23. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/debug/package.json +21 -60
  24. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/ms/package.json +19 -51
  25. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/portastic/node_modules/bluebird/package.json +41 -66
  26. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/portastic/package.json +23 -51
  27. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/proxy-chain/CHANGELOG.md +18 -0
  28. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/proxy-chain/README.md +8 -0
  29. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/proxy-chain/build/anonymize_proxy.js +5 -0
  30. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/proxy-chain/build/handler_base.js +86 -53
  31. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/proxy-chain/build/handler_forward.js +23 -5
  32. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/proxy-chain/build/handler_tunnel_chain.js +3 -7
  33. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/proxy-chain/build/handler_tunnel_direct.js +1 -1
  34. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/proxy-chain/build/index.js +3 -5
  35. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/proxy-chain/build/server.js +3 -1
  36. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/proxy-chain/build/tcp_tunnel.js +245 -115
  37. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/proxy-chain/build/tcp_tunnel_tools.js +138 -0
  38. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/proxy-chain/node_modules/.bin/portastic +1 -0
  39. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/proxy-chain/package.json +41 -68
  40. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/underscore/package.json +27 -58
  41. data/lib/proxy_chain_rb/node_js/proxy-chain-server/package.json +1 -1
  42. data/lib/proxy_chain_rb/node_js/proxy-chain-server/server.js +4 -2
  43. data/lib/proxy_chain_rb/node_js/proxy-chain-server/yarn.lock +53 -0
  44. data/lib/proxy_chain_rb/server.rb +8 -6
  45. data/lib/proxy_chain_rb/version.rb +1 -1
  46. data/proxy_chain_rb.gemspec +3 -3
  47. metadata +16 -14
  48. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/proxy-chain/build/handler_tunnel_tcp_chain.js +0 -271
  49. data/lib/proxy_chain_rb/node_js/proxy-chain-server/package-lock.json +0 -63
@@ -16,6 +16,7 @@ function PromiseArray(values) {
16
16
  var promise = this._promise = new Promise(INTERNAL);
17
17
  if (values instanceof Promise) {
18
18
  promise._propagateFrom(values, 3);
19
+ values.suppressUnhandledRejections();
19
20
  }
20
21
  promise._setOnCancel(this);
21
22
  this._values = values;
@@ -5,14 +5,13 @@ module.exports = function(Promise,
5
5
  tryConvertToPromise,
6
6
  INTERNAL,
7
7
  debug) {
8
- var getDomain = Promise._getDomain;
9
8
  var util = require("./util");
10
9
  var tryCatch = util.tryCatch;
11
10
 
12
11
  function ReductionPromiseArray(promises, fn, initialValue, _each) {
13
12
  this.constructor$(promises);
14
- var domain = getDomain();
15
- this._fn = domain === null ? fn : util.domainBind(domain, fn);
13
+ var context = Promise._getContext();
14
+ this._fn = util.contextBind(context, fn);
16
15
  if (initialValue !== undefined) {
17
16
  initialValue = Promise.resolve(initialValue);
18
17
  initialValue._attachCancellationCallback(this);
@@ -32,8 +31,8 @@ function ReductionPromiseArray(promises, fn, initialValue, _each) {
32
31
  util.inherits(ReductionPromiseArray, PromiseArray);
33
32
 
34
33
  ReductionPromiseArray.prototype._gotAccum = function(accum) {
35
- if (this._eachValues !== undefined &&
36
- this._eachValues !== null &&
34
+ if (this._eachValues !== undefined &&
35
+ this._eachValues !== null &&
37
36
  accum !== INTERNAL) {
38
37
  this._eachValues.push(accum);
39
38
  }
@@ -89,6 +88,13 @@ ReductionPromiseArray.prototype._iterate = function (values) {
89
88
 
90
89
  this._currentCancellable = value;
91
90
 
91
+ for (var j = i; j < length; ++j) {
92
+ var maybePromise = values[j];
93
+ if (maybePromise instanceof Promise) {
94
+ maybePromise.suppressUnhandledRejections();
95
+ }
96
+ }
97
+
92
98
  if (!value.isRejected()) {
93
99
  for (; i < length; ++i) {
94
100
  var ctx = {
@@ -98,7 +104,12 @@ ReductionPromiseArray.prototype._iterate = function (values) {
98
104
  length: length,
99
105
  array: this
100
106
  };
107
+
101
108
  value = value._then(gotAccum, undefined, undefined, ctx, undefined);
109
+
110
+ if ((i & 127) === 0) {
111
+ value._setNoAsyncGuarantee();
112
+ }
102
113
  }
103
114
  }
104
115
 
@@ -37,6 +37,10 @@ Promise.settle = function (promises) {
37
37
  return new SettledPromiseArray(promises).promise();
38
38
  };
39
39
 
40
+ Promise.allSettled = function (promises) {
41
+ return new SettledPromiseArray(promises).promise();
42
+ };
43
+
40
44
  Promise.prototype.settle = function () {
41
45
  return Promise.settle(this);
42
46
  };
@@ -326,18 +326,42 @@ function getNativePromise() {
326
326
  if (typeof Promise === "function") {
327
327
  try {
328
328
  var promise = new Promise(function(){});
329
- if ({}.toString.call(promise) === "[object Promise]") {
329
+ if (classString(promise) === "[object Promise]") {
330
330
  return Promise;
331
331
  }
332
332
  } catch (e) {}
333
333
  }
334
334
  }
335
335
 
336
- function domainBind(self, cb) {
337
- return self.bind(cb);
336
+ var reflectHandler;
337
+ function contextBind(ctx, cb) {
338
+ if (ctx === null ||
339
+ typeof cb !== "function" ||
340
+ cb === reflectHandler) {
341
+ return cb;
342
+ }
343
+
344
+ if (ctx.domain !== null) {
345
+ cb = ctx.domain.bind(cb);
346
+ }
347
+
348
+ var async = ctx.async;
349
+ if (async !== null) {
350
+ var old = cb;
351
+ cb = function() {
352
+ var $_len = arguments.length + 2;var args = new Array($_len); for(var $_i = 2; $_i < $_len ; ++$_i) {args[$_i] = arguments[$_i - 2];};
353
+ args[0] = old;
354
+ args[1] = this;
355
+ return async.runInAsyncScope.apply(async, args);
356
+ };
357
+ }
358
+ return cb;
338
359
  }
339
360
 
340
361
  var ret = {
362
+ setReflectHandler: function(fn) {
363
+ reflectHandler = fn;
364
+ },
341
365
  isClass: isClass,
342
366
  isIdentifier: isIdentifier,
343
367
  inheritedDataKeys: inheritedDataKeys,
@@ -364,24 +388,32 @@ var ret = {
364
388
  markAsOriginatingFromRejection: markAsOriginatingFromRejection,
365
389
  classString: classString,
366
390
  copyDescriptors: copyDescriptors,
367
- hasDevTools: typeof chrome !== "undefined" && chrome &&
368
- typeof chrome.loadTimes === "function",
369
391
  isNode: isNode,
370
392
  hasEnvVariables: hasEnvVariables,
371
393
  env: env,
372
394
  global: globalObject,
373
395
  getNativePromise: getNativePromise,
374
- domainBind: domainBind
396
+ contextBind: contextBind
375
397
  };
376
398
  ret.isRecentNode = ret.isNode && (function() {
377
399
  var version;
378
- if (process.versions && process.versions.node) {
400
+ if (process.versions && process.versions.node) {
379
401
  version = process.versions.node.split(".").map(Number);
380
402
  } else if (process.version) {
381
403
  version = process.version.split(".").map(Number);
382
404
  }
383
405
  return (version[0] === 0 && version[1] > 10) || (version[0] > 0);
384
406
  })();
407
+ ret.nodeSupportsAsyncResource = ret.isNode && (function() {
408
+ var supportsAsync = false;
409
+ try {
410
+ var res = require("async_hooks").AsyncResource;
411
+ supportsAsync = typeof res.prototype.runInAsyncScope === "function";
412
+ } catch (e) {
413
+ supportsAsync = false;
414
+ }
415
+ return supportsAsync;
416
+ })();
385
417
 
386
418
  if (ret.isNode) ret.toFastProperties(process);
387
419
 
@@ -1,39 +1,44 @@
1
1
  {
2
- "_from": "bluebird@^3.5.1",
3
- "_id": "bluebird@3.5.5",
4
- "_inBundle": false,
5
- "_integrity": "sha512-5am6HnnfN+urzt4yfg7IgTbotDjIT/u8AJpEt0sIU9FtXfVeezXAPKswrG+xKUCOYAINpSdgZVDU6QFh+cuH3w==",
6
- "_location": "/bluebird",
7
- "_phantomChildren": {},
8
- "_requested": {
9
- "type": "range",
10
- "registry": true,
11
- "raw": "bluebird@^3.5.1",
12
- "name": "bluebird",
13
- "escapedName": "bluebird",
14
- "rawSpec": "^3.5.1",
15
- "saveSpec": null,
16
- "fetchSpec": "^3.5.1"
17
- },
18
- "_requiredBy": [
19
- "/proxy-chain"
2
+ "name": "bluebird",
3
+ "description": "Full featured Promises/A+ implementation with exceptionally good performance",
4
+ "version": "3.7.0",
5
+ "keywords": [
6
+ "promise",
7
+ "performance",
8
+ "promises",
9
+ "promises-a",
10
+ "promises-aplus",
11
+ "async",
12
+ "await",
13
+ "deferred",
14
+ "deferreds",
15
+ "future",
16
+ "flow control",
17
+ "dsl",
18
+ "fluent interface"
20
19
  ],
21
- "_resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.5.5.tgz",
22
- "_shasum": "a8d0afd73251effbbd5fe384a77d73003c17a71f",
23
- "_spec": "bluebird@^3.5.1",
24
- "_where": "/Users/sebastianjohnsson/Programming/Javascript/proxy-chain-server/node_modules/proxy-chain",
20
+ "scripts": {
21
+ "lint": "node scripts/jshint.js",
22
+ "test": "node --expose-gc tools/test.js",
23
+ "istanbul": "istanbul",
24
+ "prepublish": "npm run generate-browser-core && npm run generate-browser-full",
25
+ "generate-browser-full": "node tools/build.js --no-clean --no-debug --release --browser --minify",
26
+ "generate-browser-core": "node tools/build.js --features=core --no-debug --release --zalgo --browser --minify && mv js/browser/bluebird.js js/browser/bluebird.core.js && mv js/browser/bluebird.min.js js/browser/bluebird.core.min.js"
27
+ },
28
+ "homepage": "https://github.com/petkaantonov/bluebird",
29
+ "repository": {
30
+ "type": "git",
31
+ "url": "git://github.com/petkaantonov/bluebird.git"
32
+ },
33
+ "bugs": {
34
+ "url": "http://github.com/petkaantonov/bluebird/issues"
35
+ },
36
+ "license": "MIT",
25
37
  "author": {
26
38
  "name": "Petka Antonov",
27
39
  "email": "petka_antonov@hotmail.com",
28
40
  "url": "http://github.com/petkaantonov/"
29
41
  },
30
- "browser": "./js/browser/bluebird.js",
31
- "bugs": {
32
- "url": "http://github.com/petkaantonov/bluebird/issues"
33
- },
34
- "bundleDependencies": false,
35
- "deprecated": false,
36
- "description": "Full featured Promises/A+ implementation with exceptionally good performance",
37
42
  "devDependencies": {
38
43
  "acorn": "^6.0.2",
39
44
  "acorn-walk": "^6.1.0",
@@ -61,42 +66,13 @@
61
66
  "sinon": "~1.7.3",
62
67
  "uglify-js": "~2.4.16"
63
68
  },
69
+ "readmeFilename": "README.md",
70
+ "main": "./js/release/bluebird.js",
71
+ "webpack": "./js/release/bluebird.js",
72
+ "browser": "./js/browser/bluebird.js",
64
73
  "files": [
65
74
  "js/browser",
66
75
  "js/release",
67
76
  "LICENSE"
68
- ],
69
- "homepage": "https://github.com/petkaantonov/bluebird",
70
- "keywords": [
71
- "promise",
72
- "performance",
73
- "promises",
74
- "promises-a",
75
- "promises-aplus",
76
- "async",
77
- "await",
78
- "deferred",
79
- "deferreds",
80
- "future",
81
- "flow control",
82
- "dsl",
83
- "fluent interface"
84
- ],
85
- "license": "MIT",
86
- "main": "./js/release/bluebird.js",
87
- "name": "bluebird",
88
- "repository": {
89
- "type": "git",
90
- "url": "git://github.com/petkaantonov/bluebird.git"
91
- },
92
- "scripts": {
93
- "generate-browser-core": "node tools/build.js --features=core --no-debug --release --zalgo --browser --minify && mv js/browser/bluebird.js js/browser/bluebird.core.js && mv js/browser/bluebird.min.js js/browser/bluebird.core.min.js",
94
- "generate-browser-full": "node tools/build.js --no-clean --no-debug --release --browser --minify",
95
- "istanbul": "istanbul",
96
- "lint": "node scripts/jshint.js",
97
- "prepublish": "npm run generate-browser-core && npm run generate-browser-full",
98
- "test": "node --expose-gc tools/test.js"
99
- },
100
- "version": "3.5.5",
101
- "webpack": "./js/release/bluebird.js"
77
+ ]
102
78
  }
@@ -1,3 +1,14 @@
1
+ 2.20.3 / 2019-10-11
2
+ ==================
3
+
4
+ * Support Node.js 0.10 (Revert #1059)
5
+ * Ran "npm unpublish commander@2.20.2". There is no 2.20.2.
6
+
7
+ 2.20.1 / 2019-09-29
8
+ ==================
9
+
10
+ * Improve executable subcommand tracking
11
+ * Update dev dependencies
1
12
 
2
13
  2.20.0 / 2019-04-02
3
14
  ==================
@@ -484,7 +484,7 @@ Command.prototype.parse = function(argv) {
484
484
  })[0];
485
485
  }
486
486
 
487
- if (this._execs[name] && typeof this._execs[name] !== 'function') {
487
+ if (this._execs[name] === true) {
488
488
  return this.executeSubCommand(argv, args, parsed.unknown);
489
489
  } else if (aliasCommand) {
490
490
  // is alias of a subCommand
@@ -1,70 +1,38 @@
1
1
  {
2
- "_from": "commander@^2.8.1",
3
- "_id": "commander@2.20.0",
4
- "_inBundle": false,
5
- "_integrity": "sha512-7j2y+40w61zy6YC2iRNpUe/NwhNyoXrYpHMrSunaMG64nRnaf96zO/KMQR4OyN/UnE5KLyEBnKHd4aG3rskjpQ==",
6
- "_location": "/commander",
7
- "_phantomChildren": {},
8
- "_requested": {
9
- "type": "range",
10
- "registry": true,
11
- "raw": "commander@^2.8.1",
12
- "name": "commander",
13
- "escapedName": "commander",
14
- "rawSpec": "^2.8.1",
15
- "saveSpec": null,
16
- "fetchSpec": "^2.8.1"
17
- },
18
- "_requiredBy": [
19
- "/portastic"
20
- ],
21
- "_resolved": "https://registry.npmjs.org/commander/-/commander-2.20.0.tgz",
22
- "_shasum": "d58bb2b5c1ee8f87b0d340027e9e94e222c5a422",
23
- "_spec": "commander@^2.8.1",
24
- "_where": "/Users/sebastianjohnsson/Programming/Javascript/proxy-chain-server/node_modules/portastic",
25
- "author": {
26
- "name": "TJ Holowaychuk",
27
- "email": "tj@vision-media.ca"
28
- },
29
- "bugs": {
30
- "url": "https://github.com/tj/commander.js/issues"
31
- },
32
- "bundleDependencies": false,
33
- "dependencies": {},
34
- "deprecated": false,
2
+ "name": "commander",
3
+ "version": "2.20.3",
35
4
  "description": "the complete solution for node.js command-line programs",
36
- "devDependencies": {
37
- "@types/node": "^10.11.3",
38
- "eslint": "^5.6.1",
39
- "should": "^13.2.3",
40
- "sinon": "^6.3.4",
41
- "standard": "^12.0.1",
42
- "ts-node": "^7.0.1",
43
- "typescript": "^2.9.2"
44
- },
45
- "files": [
46
- "index.js",
47
- "typings/index.d.ts"
48
- ],
49
- "homepage": "https://github.com/tj/commander.js#readme",
50
5
  "keywords": [
51
6
  "commander",
52
7
  "command",
53
8
  "option",
54
9
  "parser"
55
10
  ],
11
+ "author": "TJ Holowaychuk <tj@vision-media.ca>",
56
12
  "license": "MIT",
57
- "main": "index",
58
- "name": "commander",
59
13
  "repository": {
60
14
  "type": "git",
61
- "url": "git+https://github.com/tj/commander.js.git"
15
+ "url": "https://github.com/tj/commander.js.git"
62
16
  },
63
17
  "scripts": {
64
18
  "lint": "eslint index.js",
65
19
  "test": "node test/run.js && npm run test-typings",
66
20
  "test-typings": "tsc -p tsconfig.json"
67
21
  },
68
- "typings": "typings/index.d.ts",
69
- "version": "2.20.0"
22
+ "main": "index",
23
+ "files": [
24
+ "index.js",
25
+ "typings/index.d.ts"
26
+ ],
27
+ "dependencies": {},
28
+ "devDependencies": {
29
+ "@types/node": "^12.7.8",
30
+ "eslint": "^6.4.0",
31
+ "should": "^13.2.3",
32
+ "sinon": "^7.5.0",
33
+ "standard": "^14.3.1",
34
+ "ts-node": "^8.4.1",
35
+ "typescript": "^3.6.3"
36
+ },
37
+ "typings": "typings/index.d.ts"
70
38
  }
@@ -1,58 +1,25 @@
1
1
  {
2
- "_from": "debug@^2.2.0",
3
- "_id": "debug@2.6.9",
4
- "_inBundle": false,
5
- "_integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
6
- "_location": "/debug",
7
- "_phantomChildren": {},
8
- "_requested": {
9
- "type": "range",
10
- "registry": true,
11
- "raw": "debug@^2.2.0",
12
- "name": "debug",
13
- "escapedName": "debug",
14
- "rawSpec": "^2.2.0",
15
- "saveSpec": null,
16
- "fetchSpec": "^2.2.0"
2
+ "name": "debug",
3
+ "version": "2.6.9",
4
+ "repository": {
5
+ "type": "git",
6
+ "url": "git://github.com/visionmedia/debug.git"
17
7
  },
18
- "_requiredBy": [
19
- "/portastic"
8
+ "description": "small debugging utility",
9
+ "keywords": [
10
+ "debug",
11
+ "log",
12
+ "debugger"
20
13
  ],
21
- "_resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
22
- "_shasum": "5d128515df134ff327e90a4c93f4e077a536341f",
23
- "_spec": "debug@^2.2.0",
24
- "_where": "/Users/sebastianjohnsson/Programming/Javascript/proxy-chain-server/node_modules/portastic",
25
- "author": {
26
- "name": "TJ Holowaychuk",
27
- "email": "tj@vision-media.ca"
28
- },
29
- "browser": "./src/browser.js",
30
- "bugs": {
31
- "url": "https://github.com/visionmedia/debug/issues"
32
- },
33
- "bundleDependencies": false,
34
- "component": {
35
- "scripts": {
36
- "debug/index.js": "browser.js",
37
- "debug/debug.js": "debug.js"
38
- }
39
- },
14
+ "author": "TJ Holowaychuk <tj@vision-media.ca>",
40
15
  "contributors": [
41
- {
42
- "name": "Nathan Rajlich",
43
- "email": "nathan@tootallnate.net",
44
- "url": "http://n8.io"
45
- },
46
- {
47
- "name": "Andrew Rhyne",
48
- "email": "rhyneandrew@gmail.com"
49
- }
16
+ "Nathan Rajlich <nathan@tootallnate.net> (http://n8.io)",
17
+ "Andrew Rhyne <rhyneandrew@gmail.com>"
50
18
  ],
19
+ "license": "MIT",
51
20
  "dependencies": {
52
21
  "ms": "2.0.0"
53
22
  },
54
- "deprecated": false,
55
- "description": "small debugging utility",
56
23
  "devDependencies": {
57
24
  "browserify": "9.0.3",
58
25
  "chai": "^3.5.0",
@@ -71,18 +38,12 @@
71
38
  "sinon": "^1.17.6",
72
39
  "sinon-chai": "^2.8.0"
73
40
  },
74
- "homepage": "https://github.com/visionmedia/debug#readme",
75
- "keywords": [
76
- "debug",
77
- "log",
78
- "debugger"
79
- ],
80
- "license": "MIT",
81
41
  "main": "./src/index.js",
82
- "name": "debug",
83
- "repository": {
84
- "type": "git",
85
- "url": "git://github.com/visionmedia/debug.git"
86
- },
87
- "version": "2.6.9"
42
+ "browser": "./src/browser.js",
43
+ "component": {
44
+ "scripts": {
45
+ "debug/index.js": "browser.js",
46
+ "debug/debug.js": "debug.js"
47
+ }
48
+ }
88
49
  }