summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/dezalgo/package.json
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/node_modules/dezalgo/package.json')
-rw-r--r--deps/npm/node_modules/dezalgo/package.json76
1 files changed, 50 insertions, 26 deletions
diff --git a/deps/npm/node_modules/dezalgo/package.json b/deps/npm/node_modules/dezalgo/package.json
index ea2b1a6d30..41ca347412 100644
--- a/deps/npm/node_modules/dezalgo/package.json
+++ b/deps/npm/node_modules/dezalgo/package.json
@@ -1,25 +1,52 @@
{
- "name": "dezalgo",
- "version": "1.0.3",
- "description": "Contain async insanity so that the dark pony lord doesn't eat souls",
- "main": "dezalgo.js",
- "directories": {
- "test": "test"
+ "_from": "dezalgo@~1.0.3",
+ "_id": "dezalgo@1.0.3",
+ "_integrity": "sha1-f3Qt4Gb8dIvI24IFad3c5Jvw1FY=",
+ "_location": "/dezalgo",
+ "_phantomChildren": {},
+ "_requested": {
+ "type": "range",
+ "registry": true,
+ "raw": "dezalgo@~1.0.3",
+ "name": "dezalgo",
+ "escapedName": "dezalgo",
+ "rawSpec": "~1.0.3",
+ "saveSpec": null,
+ "fetchSpec": "~1.0.3"
+ },
+ "_requiredBy": [
+ "/",
+ "/read-package-tree",
+ "/readdir-scoped-modules"
+ ],
+ "_resolved": "https://registry.npmjs.org/dezalgo/-/dezalgo-1.0.3.tgz",
+ "_shasum": "7f742de066fc748bc8db820569dddce49bf0d456",
+ "_shrinkwrap": null,
+ "_spec": "dezalgo@~1.0.3",
+ "_where": "/Users/zkat/Documents/code/npm",
+ "author": {
+ "name": "Isaac Z. Schlueter",
+ "email": "i@izs.me",
+ "url": "http://blog.izs.me/"
+ },
+ "bin": null,
+ "bugs": {
+ "url": "https://github.com/npm/dezalgo/issues"
},
+ "bundleDependencies": false,
"dependencies": {
"asap": "^2.0.0",
"wrappy": "1"
},
+ "deprecated": false,
+ "description": "Contain async insanity so that the dark pony lord doesn't eat souls",
"devDependencies": {
"tap": "^1.2.0"
},
- "scripts": {
- "test": "tap test/*.js"
- },
- "repository": {
- "type": "git",
- "url": "git+https://github.com/npm/dezalgo.git"
+ "directories": {
+ "test": "test"
},
+ "homepage": "https://github.com/npm/dezalgo",
"keywords": [
"async",
"zalgo",
@@ -33,20 +60,17 @@
"Z̘͍̼͎̣͔͝Ą̲̜̱̱̹̤͇L̶̝̰̭͔G͍̖͍O̫͜ͅ!̼̤ͅ",
"H̝̪̜͓̀̌̂̒E̢̙̠̣ ̴̳͇̥̟̠͍̐C̹̓̑̐̆͝Ó̶̭͓̚M̬̼Ĕ̖̤͔͔̟̹̽̿̊ͥ̍ͫS̻̰̦̻̖̘̱̒ͪ͌̅͟"
],
- "author": {
- "name": "Isaac Z. Schlueter",
- "email": "i@izs.me",
- "url": "http://blog.izs.me/"
- },
"license": "ISC",
- "bugs": {
- "url": "https://github.com/npm/dezalgo/issues"
+ "main": "dezalgo.js",
+ "name": "dezalgo",
+ "optionalDependencies": {},
+ "peerDependencies": {},
+ "repository": {
+ "type": "git",
+ "url": "git+https://github.com/npm/dezalgo.git"
},
- "homepage": "https://github.com/npm/dezalgo",
- "readme": "# dezalgo\n\nContain async insanity so that the dark pony lord doesn't eat souls\n\nSee [this blog\npost](http://blog.izs.me/post/59142742143/designing-apis-for-asynchrony).\n\n## USAGE\n\nPass a callback to `dezalgo` and it will ensure that it is *always*\ncalled in a future tick, and never in this tick.\n\n```javascript\nvar dz = require('dezalgo')\n\nvar cache = {}\nfunction maybeSync(arg, cb) {\n cb = dz(cb)\n\n // this will actually defer to nextTick\n if (cache[arg]) cb(null, cache[arg])\n\n fs.readFile(arg, function (er, data) {\n // since this is *already* defered, it will call immediately\n if (er) cb(er)\n cb(null, cache[arg] = data)\n })\n}\n```\n",
- "readmeFilename": "README.md",
- "gitHead": "d4d3f3f6f47b1a326194d5281349c83dde258458",
- "_id": "dezalgo@1.0.3",
- "_shasum": "7f742de066fc748bc8db820569dddce49bf0d456",
- "_from": "dezalgo@>=1.0.3 <1.1.0"
+ "scripts": {
+ "test": "tap test/*.js"
+ },
+ "version": "1.0.3"
}