Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRebecca Turner <me@re-becca.org>2015-05-21 23:17:54 +0300
committerRebecca Turner <me@re-becca.org>2015-05-21 23:17:54 +0300
commit8e04bba830d4353d84751d21803cd127c96153a7 (patch)
tree391183646c1bc6ac91efa448ecb157f9030f5045 /node_modules
parentd7956ca17c057d5383ff0d3fc5cf6ac2940b034d (diff)
dezalgo@1.0.2
Diffstat (limited to 'node_modules')
-rw-r--r--node_modules/dezalgo/LICENSE15
-rw-r--r--node_modules/dezalgo/node_modules/asap/package.json5
-rw-r--r--node_modules/dezalgo/package.json36
3 files changed, 37 insertions, 19 deletions
diff --git a/node_modules/dezalgo/LICENSE b/node_modules/dezalgo/LICENSE
new file mode 100644
index 000000000..19129e315
--- /dev/null
+++ b/node_modules/dezalgo/LICENSE
@@ -0,0 +1,15 @@
+The ISC License
+
+Copyright (c) Isaac Z. Schlueter and Contributors
+
+Permission to use, copy, modify, and/or distribute this software for any
+purpose with or without fee is hereby granted, provided that the above
+copyright notice and this permission notice appear in all copies.
+
+THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
+IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
diff --git a/node_modules/dezalgo/node_modules/asap/package.json b/node_modules/dezalgo/node_modules/asap/package.json
index 311f9fc0c..25ffeeb94 100644
--- a/node_modules/dezalgo/node_modules/asap/package.json
+++ b/node_modules/dezalgo/node_modules/asap/package.json
@@ -14,8 +14,6 @@
}
],
"main": "asap",
- "readme": "\n# ASAP\n\nThis `asap` CommonJS package contains a single `asap` module that\nexports a single `asap` function that executes a function **as soon as\npossible**.\n\n```javascript\nasap(function () {\n // ...\n});\n```\n\nMore formally, ASAP provides a fast event queue that will execute tasks\nuntil it is empty before yielding to the JavaScript engine's underlying\nevent-loop. When the event queue becomes non-empty, ASAP schedules a\nflush event, preferring for that event to occur before the JavaScript\nengine has an opportunity to perform IO tasks or rendering, thus making\nthe first task and subsequent tasks semantically indistinguishable.\nASAP uses a variety of techniques to preserve this invariant on\ndifferent versions of browsers and NodeJS.\n\nBy design, ASAP can starve the event loop on the theory that, if there\nis enough work to be done synchronously, albeit in separate events, long\nenough to starve input or output, it is a strong indicator that the\nprogram needs to push back on scheduling more work.\n\nTake care. ASAP can sustain infinite recursive calls indefinitely\nwithout warning. This is behaviorally equivalent to an infinite loop.\nIt will not halt from a stack overflow, but it *will* chew through\nmemory (which is an oddity I cannot explain at this time). Just as with\ninfinite loops, you can monitor a Node process for this behavior with a\nheart-beat signal. As with infinite loops, a very small amount of\ncaution goes a long way to avoiding problems.\n\n```javascript\nfunction loop() {\n asap(loop);\n}\nloop();\n```\n\nASAP is distinct from `setImmediate` in that it does not suffer the\noverhead of returning a handle and being possible to cancel. For a\n`setImmediate` shim, consider [setImmediate][].\n\n[setImmediate]: https://github.com/noblejs/setimmediate\n\nIf a task throws an exception, it will not interrupt the flushing of\nhigh-priority tasks. The exception will be postponed to a later,\nlow-priority event to avoid slow-downs, when the underlying JavaScript\nengine will treat it as it does any unhandled exception.\n\n## Heritage\n\nASAP has been factored out of the [Q][] asynchronous promise library.\nIt originally had a naïve implementation in terms of `setTimeout`, but\n[Malte Ubl][NonBlocking] provided an insight that `postMessage` might be\nuseful for creating a high-priority, no-delay event dispatch hack.\nSince then, Internet Explorer proposed and implemented `setImmediate`.\nRobert Kratić began contributing to Q by measuring the performance of\nthe internal implementation of `asap`, paying particular attention to\nerror recovery. Domenic, Robert, and I collectively settled on the\ncurrent strategy of unrolling the high-priority event queue internally\nregardless of what strategy we used to dispatch the potentially\nlower-priority flush event. Domenic went on to make ASAP cooperate with\nNodeJS domains.\n\n[Q]: https://github.com/kriskowal/q\n[NonBlocking]: http://www.nonblocking.io/2011/06/windownexttick.html\n\nFor further reading, Nicholas Zakas provided a thorough article on [The\nCase for setImmediate][NCZ].\n\n[NCZ]: http://www.nczonline.net/blog/2013/07/09/the-case-for-setimmediate/\n\n## License\n\nCopyright 2009-2013 by Contributors\nMIT License (enclosed)\n\n",
- "readmeFilename": "README.md",
"_id": "asap@1.0.0",
"dist": {
"shasum": "b2a45da5fdfa20b0496fc3768cc27c12fa916a7d",
@@ -35,5 +33,6 @@
],
"directories": {},
"_shasum": "b2a45da5fdfa20b0496fc3768cc27c12fa916a7d",
- "_resolved": "https://registry.npmjs.org/asap/-/asap-1.0.0.tgz"
+ "_resolved": "https://registry.npmjs.org/asap/-/asap-1.0.0.tgz",
+ "readme": "ERROR: No README data found!"
}
diff --git a/node_modules/dezalgo/package.json b/node_modules/dezalgo/package.json
index 1f63e83a1..656dd0c5f 100644
--- a/node_modules/dezalgo/package.json
+++ b/node_modules/dezalgo/package.json
@@ -1,6 +1,6 @@
{
"name": "dezalgo",
- "version": "1.0.1",
+ "version": "1.0.2",
"description": "Contain async insanity so that the dark pony lord doesn't eat souls",
"main": "dezalgo.js",
"directories": {
@@ -18,7 +18,7 @@
},
"repository": {
"type": "git",
- "url": "https://github.com/npm/dezalgo"
+ "url": "git+https://github.com/npm/dezalgo.git"
},
"keywords": [
"async",
@@ -43,25 +43,29 @@
"url": "https://github.com/npm/dezalgo/issues"
},
"homepage": "https://github.com/npm/dezalgo",
- "gitHead": "0a5eee75c179611f8b67f663015d68bb517e57d2",
- "_id": "dezalgo@1.0.1",
- "_shasum": "12bde135060807900d5a7aebb607c2abb7c76937",
- "_from": "dezalgo@latest",
- "_npmVersion": "2.0.0",
- "_nodeVersion": "0.10.31",
+ "gitHead": "fabfd09a9a4ad458d0c801a1dbfff2338b9bc001",
+ "_id": "dezalgo@1.0.2",
+ "_shasum": "2bc8b5a1683131764a98def7e4aa22105a688a5a",
+ "_from": "dezalgo@>=1.0.1 <1.1.0",
+ "_npmVersion": "2.10.1",
+ "_nodeVersion": "2.0.2",
"_npmUser": {
- "name": "isaacs",
- "email": "i@izs.me"
+ "name": "othiym23",
+ "email": "ogd@aoaioxxysz.net"
+ },
+ "dist": {
+ "shasum": "2bc8b5a1683131764a98def7e4aa22105a688a5a",
+ "tarball": "http://registry.npmjs.org/dezalgo/-/dezalgo-1.0.2.tgz"
},
"maintainers": [
{
"name": "isaacs",
- "email": "i@izs.me"
+ "email": "isaacs@npmjs.com"
+ },
+ {
+ "name": "othiym23",
+ "email": "ogd@aoaioxxysz.net"
}
],
- "dist": {
- "shasum": "12bde135060807900d5a7aebb607c2abb7c76937",
- "tarball": "http://registry.npmjs.org/dezalgo/-/dezalgo-1.0.1.tgz"
- },
- "_resolved": "https://registry.npmjs.org/dezalgo/-/dezalgo-1.0.1.tgz"
+ "_resolved": "https://registry.npmjs.org/dezalgo/-/dezalgo-1.0.2.tgz"
}