{ "_args": [ [ { "raw": "thunkify@^2.1.2", "scope": null, "escapedName": "thunkify", "name": "thunkify", "rawSpec": "^2.1.2", "spec": ">=2.1.2 <3.0.0", "type": "range" }, "/home/jdaugherty/work/GT2/GT2-Android/node_modules/pac-resolver" ] ], "_from": "thunkify@>=2.1.2 <3.0.0", "_id": "thunkify@2.1.2", "_inCache": true, "_location": "/thunkify", "_npmUser": { "name": "tjholowaychuk", "email": "tj@vision-media.ca" }, "_npmVersion": "1.4.3", "_phantomChildren": {}, "_requested": { "raw": "thunkify@^2.1.2", "scope": null, "escapedName": "thunkify", "name": "thunkify", "rawSpec": "^2.1.2", "spec": ">=2.1.2 <3.0.0", "type": "range" }, "_requiredBy": [ "/pac-resolver" ], "_resolved": "https://registry.npmjs.org/thunkify/-/thunkify-2.1.2.tgz", "_shasum": "faa0e9d230c51acc95ca13a361ac05ca7e04553d", "_shrinkwrap": null, "_spec": "thunkify@^2.1.2", "_where": "/home/jdaugherty/work/GT2/GT2-Android/node_modules/pac-resolver", "bugs": { "url": "https://github.com/visionmedia/node-thunkify/issues" }, "dependencies": {}, "description": "Turn callbacks, arrays, generators, generator functions, and promises into a thunk", "devDependencies": { "mocha": "*", "should": "*" }, "directories": {}, "dist": { "shasum": "faa0e9d230c51acc95ca13a361ac05ca7e04553d", "tarball": "https://registry.npmjs.org/thunkify/-/thunkify-2.1.2.tgz" }, "homepage": "https://github.com/visionmedia/node-thunkify#readme", "keywords": [ "thunk", "co", "generator", "generators", "promise" ], "license": "MIT", "maintainers": [ { "name": "tjholowaychuk", "email": "tj@vision-media.ca" } ], "name": "thunkify", "optionalDependencies": {}, "readme": "# thunkify\n\n Turn a regular node function into one which returns a thunk,\n useful for generator-based flow control such as [co](https://github.com/visionmedia/co).\n\n## Installation\n\n```\n$ npm install thunkify\n```\n\n## Example\n\n```js\nvar thunkify = require('thunkify');\nvar fs = require('fs');\n\nvar read = thunkify(fs.readFile);\n\nread('package.json', 'utf8')(function(err, str){\n \n});\n```\n\n# License\n\n MIT\n", "readmeFilename": "Readme.md", "repository": { "type": "git", "url": "git+https://github.com/visionmedia/node-thunkify.git" }, "version": "2.1.2" }