package.json 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. {
  2. "_args": [
  3. [
  4. {
  5. "raw": "extsprintf@1.0.2",
  6. "scope": null,
  7. "escapedName": "extsprintf",
  8. "name": "extsprintf",
  9. "rawSpec": "1.0.2",
  10. "spec": "1.0.2",
  11. "type": "version"
  12. },
  13. "/mnt/Data/bach/Documents/ola/OLA#4/OLA#4DOC/sys/node_modules/jsprim"
  14. ]
  15. ],
  16. "_from": "extsprintf@1.0.2",
  17. "_id": "extsprintf@1.0.2",
  18. "_inCache": true,
  19. "_location": "/extsprintf",
  20. "_npmUser": {
  21. "name": "dap",
  22. "email": "dap@cs.brown.edu"
  23. },
  24. "_npmVersion": "1.1.65",
  25. "_phantomChildren": {},
  26. "_requested": {
  27. "raw": "extsprintf@1.0.2",
  28. "scope": null,
  29. "escapedName": "extsprintf",
  30. "name": "extsprintf",
  31. "rawSpec": "1.0.2",
  32. "spec": "1.0.2",
  33. "type": "version"
  34. },
  35. "_requiredBy": [
  36. "/jsprim",
  37. "/verror"
  38. ],
  39. "_resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.0.2.tgz",
  40. "_shasum": "e1080e0658e300b06294990cc70e1502235fd550",
  41. "_shrinkwrap": null,
  42. "_spec": "extsprintf@1.0.2",
  43. "_where": "/mnt/Data/bach/Documents/ola/OLA#4/OLA#4DOC/sys/node_modules/jsprim",
  44. "bugs": {
  45. "url": "https://github.com/davepacheco/node-extsprintf/issues"
  46. },
  47. "dependencies": {},
  48. "description": "extended POSIX-style sprintf",
  49. "devDependencies": {},
  50. "directories": {},
  51. "dist": {
  52. "shasum": "e1080e0658e300b06294990cc70e1502235fd550",
  53. "tarball": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.0.2.tgz"
  54. },
  55. "engines": [
  56. "node >=0.6.0"
  57. ],
  58. "homepage": "https://github.com/davepacheco/node-extsprintf#readme",
  59. "main": "./lib/extsprintf.js",
  60. "maintainers": [
  61. {
  62. "name": "dap",
  63. "email": "dap@cs.brown.edu"
  64. }
  65. ],
  66. "name": "extsprintf",
  67. "optionalDependencies": {},
  68. "readme": "# extsprintf: extended POSIX-style sprintf\n\nStripped down version of s[n]printf(3c). We make a best effort to throw an\nexception when given a format string we don't understand, rather than ignoring\nit, so that we won't break existing programs if/when we go implement the rest\nof this.\n\nThis implementation currently supports specifying\n\n* field alignment ('-' flag),\n* zero-pad ('0' flag)\n* always show numeric sign ('+' flag),\n* field width\n* conversions for strings, decimal integers, and floats (numbers).\n* argument size specifiers. These are all accepted but ignored, since\n Javascript has no notion of the physical size of an argument.\n\nEverything else is currently unsupported, most notably: precision, unsigned\nnumbers, non-decimal numbers, and characters.\n\nBesides the usual POSIX conversions, this implementation supports:\n\n* `%j`: pretty-print a JSON object (using node's \"inspect\")\n* `%r`: pretty-print an Error object\n\n# Example\n\nFirst, install it:\n\n # npm install extsprintf\n\nNow, use it:\n\n var mod_extsprintf = require('extsprintf');\n console.log(mod_extsprintf.sprintf('hello %25s', 'world'));\n\noutputs:\n\n hello world\n",
  69. "readmeFilename": "README.md",
  70. "repository": {
  71. "type": "git",
  72. "url": "git://github.com/davepacheco/node-extsprintf.git"
  73. },
  74. "version": "1.0.2"
  75. }