package.json 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. {
  2. "_args": [
  3. [
  4. {
  5. "raw": "shellwords@^0.1.0",
  6. "scope": null,
  7. "escapedName": "shellwords",
  8. "name": "shellwords",
  9. "rawSpec": "^0.1.0",
  10. "spec": ">=0.1.0 <0.2.0",
  11. "type": "range"
  12. },
  13. "/home/king/Desktop/FINAL/AhMyth/app/node_modules/node-notifier"
  14. ]
  15. ],
  16. "_from": "shellwords@>=0.1.0 <0.2.0",
  17. "_id": "shellwords@0.1.0",
  18. "_inCache": true,
  19. "_installable": true,
  20. "_location": "/shellwords",
  21. "_phantomChildren": {},
  22. "_requested": {
  23. "raw": "shellwords@^0.1.0",
  24. "scope": null,
  25. "escapedName": "shellwords",
  26. "name": "shellwords",
  27. "rawSpec": "^0.1.0",
  28. "spec": ">=0.1.0 <0.2.0",
  29. "type": "range"
  30. },
  31. "_requiredBy": [
  32. "/node-notifier"
  33. ],
  34. "_resolved": "https://registry.npmjs.org/shellwords/-/shellwords-0.1.0.tgz",
  35. "_shasum": "66afd47b6a12932d9071cbfd98a52e785cd0ba14",
  36. "_shrinkwrap": null,
  37. "_spec": "shellwords@^0.1.0",
  38. "_where": "/home/king/Desktop/FINAL/AhMyth/app/node_modules/node-notifier",
  39. "author": {
  40. "name": "Jimmy Cuadra",
  41. "email": "jimmy@jimmycuadra.com",
  42. "url": "http://jimmycuadra.com/"
  43. },
  44. "bugs": {
  45. "url": "https://github.com/jimmycuadra/shellwords/issues"
  46. },
  47. "dependencies": {},
  48. "description": "Manipulate strings according to the word parsing rules of the UNIX Bourne shell.",
  49. "devDependencies": {
  50. "jasmine-node": "~1.0.26",
  51. "nodewatch": "~0.1.0"
  52. },
  53. "directories": {},
  54. "dist": {
  55. "shasum": "66afd47b6a12932d9071cbfd98a52e785cd0ba14",
  56. "tarball": "https://registry.npmjs.org/shellwords/-/shellwords-0.1.0.tgz"
  57. },
  58. "homepage": "https://github.com/jimmycuadra/shellwords",
  59. "main": "./lib/shellwords",
  60. "maintainers": [
  61. {
  62. "name": "jimmycuadra",
  63. "email": "jimmycuadra@gmail.com"
  64. }
  65. ],
  66. "name": "shellwords",
  67. "optionalDependencies": {},
  68. "readme": "# Shellwords\n\nShellwords provides functions to manipulate strings according to the word parsing rules of the UNIX Bourne shell. It is based on [the Ruby module of the same name](http://www.ruby-doc.org/stdlib-1.9.3/libdoc/shellwords/rdoc/Shellwords.html).\n\n## Installation\n\nAdd \"shellwords\" to your `package.json` file and run `npm install`.\n\n## Example\n\n``` javascript\nvar shellwords = require(\"shellwords\");\n\nshellwords.split(\"foo 'bar baz'\");\n// [\"foo\", \"bar baz\"]\n\nshellwords.escape(\"What's up, yo?\");\n// 'What\\\\\\'s\\\\ up,\\\\ yo\\\\?'\n```\n",
  69. "repository": {
  70. "type": "git",
  71. "url": "git://github.com/jimmycuadra/shellwords.git"
  72. },
  73. "scripts": {
  74. "test": "cake spec"
  75. },
  76. "version": "0.1.0"
  77. }