package.json 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. {
  2. "_args": [
  3. [
  4. {
  5. "raw": "fs.realpath@^1.0.0",
  6. "scope": null,
  7. "escapedName": "fs.realpath",
  8. "name": "fs.realpath",
  9. "rawSpec": "^1.0.0",
  10. "spec": ">=1.0.0 <2.0.0",
  11. "type": "range"
  12. },
  13. "/mnt/Data/bach/Documents/ola/OLA#4/OLA#4DOC/sys/node_modules/node-sass/node_modules/glob"
  14. ]
  15. ],
  16. "_from": "fs.realpath@>=1.0.0 <2.0.0",
  17. "_id": "fs.realpath@1.0.0",
  18. "_inCache": true,
  19. "_location": "/fs.realpath",
  20. "_nodeVersion": "4.4.4",
  21. "_npmOperationalInternal": {
  22. "host": "packages-16-east.internal.npmjs.com",
  23. "tmp": "tmp/fs.realpath-1.0.0.tgz_1466015941059_0.3332864767871797"
  24. },
  25. "_npmUser": {
  26. "name": "isaacs",
  27. "email": "i@izs.me"
  28. },
  29. "_npmVersion": "3.9.1",
  30. "_phantomChildren": {},
  31. "_requested": {
  32. "raw": "fs.realpath@^1.0.0",
  33. "scope": null,
  34. "escapedName": "fs.realpath",
  35. "name": "fs.realpath",
  36. "rawSpec": "^1.0.0",
  37. "spec": ">=1.0.0 <2.0.0",
  38. "type": "range"
  39. },
  40. "_requiredBy": [
  41. "/node-gyp/glob",
  42. "/node-sass/glob",
  43. "/rimraf/glob",
  44. "/sass-graph/glob"
  45. ],
  46. "_resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
  47. "_shasum": "1504ad2523158caa40db4a2787cb01411994ea4f",
  48. "_shrinkwrap": null,
  49. "_spec": "fs.realpath@^1.0.0",
  50. "_where": "/mnt/Data/bach/Documents/ola/OLA#4/OLA#4DOC/sys/node_modules/node-sass/node_modules/glob",
  51. "author": {
  52. "name": "Isaac Z. Schlueter",
  53. "email": "i@izs.me",
  54. "url": "http://blog.izs.me/"
  55. },
  56. "bugs": {
  57. "url": "https://github.com/isaacs/fs.realpath/issues"
  58. },
  59. "dependencies": {},
  60. "description": "Use node's fs.realpath, but fall back to the JS implementation if the native one fails",
  61. "devDependencies": {},
  62. "directories": {},
  63. "dist": {
  64. "shasum": "1504ad2523158caa40db4a2787cb01411994ea4f",
  65. "tarball": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz"
  66. },
  67. "files": [
  68. "old.js",
  69. "index.js"
  70. ],
  71. "gitHead": "03e7c884431fe185dfebbc9b771aeca339c1807a",
  72. "homepage": "https://github.com/isaacs/fs.realpath#readme",
  73. "keywords": [
  74. "realpath",
  75. "fs",
  76. "polyfill"
  77. ],
  78. "license": "ISC",
  79. "main": "index.js",
  80. "maintainers": [
  81. {
  82. "name": "isaacs",
  83. "email": "i@izs.me"
  84. }
  85. ],
  86. "name": "fs.realpath",
  87. "optionalDependencies": {},
  88. "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",
  89. "readmeFilename": "README.md",
  90. "repository": {
  91. "type": "git",
  92. "url": "git+https://github.com/isaacs/fs.realpath.git"
  93. },
  94. "scripts": {
  95. "test": "tap test/*.js --cov"
  96. },
  97. "version": "1.0.0"
  98. }