package.json 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. {
  2. "_args": [
  3. [
  4. {
  5. "raw": "jsonify@~0.0.0",
  6. "scope": null,
  7. "escapedName": "jsonify",
  8. "name": "jsonify",
  9. "rawSpec": "~0.0.0",
  10. "spec": ">=0.0.0 <0.1.0",
  11. "type": "range"
  12. },
  13. "/mnt/Data/bach/Documents/ola/OLA#4/OLA#4DOC/sys/node_modules/json-stable-stringify"
  14. ]
  15. ],
  16. "_defaultsLoaded": true,
  17. "_engineSupported": true,
  18. "_from": "jsonify@>=0.0.0 <0.1.0",
  19. "_id": "jsonify@0.0.0",
  20. "_inCache": true,
  21. "_location": "/jsonify",
  22. "_nodeVersion": "v0.5.0-pre",
  23. "_npmVersion": "1.0.10",
  24. "_phantomChildren": {},
  25. "_requested": {
  26. "raw": "jsonify@~0.0.0",
  27. "scope": null,
  28. "escapedName": "jsonify",
  29. "name": "jsonify",
  30. "rawSpec": "~0.0.0",
  31. "spec": ">=0.0.0 <0.1.0",
  32. "type": "range"
  33. },
  34. "_requiredBy": [
  35. "/json-stable-stringify"
  36. ],
  37. "_resolved": "https://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz",
  38. "_shasum": "2c74b6ee41d93ca51b7b5aaee8f503631d252a73",
  39. "_shrinkwrap": null,
  40. "_spec": "jsonify@~0.0.0",
  41. "_where": "/mnt/Data/bach/Documents/ola/OLA#4/OLA#4DOC/sys/node_modules/json-stable-stringify",
  42. "author": {
  43. "name": "Douglas Crockford",
  44. "url": "http://crockford.com/"
  45. },
  46. "bugs": {
  47. "url": "https://github.com/substack/jsonify/issues"
  48. },
  49. "dependencies": {},
  50. "description": "JSON without touching any globals",
  51. "devDependencies": {
  52. "garbage": "0.0.x",
  53. "tap": "0.0.x"
  54. },
  55. "directories": {
  56. "lib": ".",
  57. "test": "test"
  58. },
  59. "dist": {
  60. "shasum": "2c74b6ee41d93ca51b7b5aaee8f503631d252a73",
  61. "tarball": "https://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz"
  62. },
  63. "engines": {
  64. "node": "*"
  65. },
  66. "homepage": "https://github.com/substack/jsonify#readme",
  67. "keywords": [
  68. "json",
  69. "browser"
  70. ],
  71. "license": "Public Domain",
  72. "main": "index.js",
  73. "maintainers": [
  74. {
  75. "name": "substack",
  76. "email": "mail@substack.net"
  77. }
  78. ],
  79. "name": "jsonify",
  80. "optionalDependencies": {},
  81. "readme": "jsonify\n=======\n\nThis module provides Douglas Crockford's JSON implementation without modifying\nany globals.\n\n`stringify` and `parse` are merely exported without respect to whether or not a\nglobal `JSON` object exists.\n\nmethods\n=======\n\nvar json = require('jsonify');\n\njson.parse(source, reviver)\n---------------------------\n\nReturn a new javascript object from a parse of the `source` string.\n\nIf a `reviver` function is specified, walk the structure passing each name/value\npair to `reviver.call(parent, key, value)` to transform the `value` before\nparsing it.\n\njson.stringify(value, replacer, space)\n--------------------------------------\n\nReturn a string representation for `value`.\n\nIf `replacer` is specified, walk the structure passing each name/value pair to\n`replacer.call(parent, key, value)` to transform the `value` before stringifying\nit.\n\nIf `space` is a number, indent the result by that many spaces.\nIf `space` is a string, use `space` as the indentation.\n",
  82. "readmeFilename": "README.markdown",
  83. "repository": {
  84. "type": "git",
  85. "url": "git+ssh://git@github.com/substack/jsonify.git"
  86. },
  87. "scripts": {
  88. "test": "tap test"
  89. },
  90. "version": "0.0.0"
  91. }