@inst/vscode-bin-darwin
Version:
BINARY ONLY - VSCode binary deployment for macOS
76 lines (75 loc) • 3.11 kB
JSON
{
"_args": [
[
{
"raw": "fs.realpath@https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
"scope": null,
"escapedName": "fs.realpath",
"name": "fs.realpath",
"rawSpec": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
"spec": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
"type": "remote"
},
"/Users/roblou/code/vscode-node-debug"
]
],
"_from": "fs.realpath@>=1.0.0 <2.0.0",
"_id": "fs.realpath@1.0.0",
"_inCache": true,
"_location": "/fs.realpath",
"_phantomChildren": {},
"_requested": {
"raw": "fs.realpath@https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
"scope": null,
"escapedName": "fs.realpath",
"name": "fs.realpath",
"rawSpec": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
"spec": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
"type": "remote"
},
"_requiredBy": [
"/",
"/glob",
"/mocha/glob"
],
"_resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
"_shasum": "1504ad2523158caa40db4a2787cb01411994ea4f",
"_shrinkwrap": null,
"_spec": "fs.realpath@https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
"_where": "/Users/roblou/code/vscode-node-debug",
"author": {
"name": "Isaac Z. Schlueter",
"email": "i@izs.me",
"url": "http://blog.izs.me/"
},
"bugs": {
"url": "https://github.com/isaacs/fs.realpath/issues"
},
"dependencies": {},
"description": "Use node's fs.realpath, but fall back to the JS implementation if the native one fails",
"devDependencies": {},
"files": [
"old.js",
"index.js"
],
"homepage": "https://github.com/isaacs/fs.realpath#readme",
"keywords": [
"realpath",
"fs",
"polyfill"
],
"license": "ISC",
"main": "index.js",
"name": "fs.realpath",
"optionalDependencies": {},
"readme": "# fs.realpath\n\nA backwards-compatible fs.realpath for Node v6 and above\n\nIn Node v6, the JavaScript implementation of fs.realpath was replaced\nwith a faster (but less resilient) native implementation. That raises\nnew and platform-specific errors and cannot handle long or excessively\nsymlink-looping paths.\n\nThis module handles those cases by detecting the new errors and\nfalling back to the JavaScript implementation. On versions of Node\nprior to v6, it has no effect.\n\n## USAGE\n\n```js\nvar rp = require('fs.realpath')\n\n// async version\nrp.realpath(someLongAndLoopingPath, function (er, real) {\n // the ELOOP was handled, but it was a bit slower\n})\n\n// sync version\nvar real = rp.realpathSync(someLongAndLoopingPath)\n\n// monkeypatch at your own risk!\n// This replaces the fs.realpath/fs.realpathSync builtins\nrp.monkeypatch()\n\n// un-do the monkeypatching\nrp.unmonkeypatch()\n```\n",
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "git+https://github.com/isaacs/fs.realpath.git"
},
"scripts": {
"test": "tap test/*.js --cov"
},
"version": "1.0.0"
}