| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- {
- "_args": [
- [
- {
- "raw": "shellwords@^0.1.0",
- "scope": null,
- "escapedName": "shellwords",
- "name": "shellwords",
- "rawSpec": "^0.1.0",
- "spec": ">=0.1.0 <0.2.0",
- "type": "range"
- },
- "/home/king/Desktop/FINAL/AhMyth/app/node_modules/node-notifier"
- ]
- ],
- "_from": "shellwords@>=0.1.0 <0.2.0",
- "_id": "shellwords@0.1.0",
- "_inCache": true,
- "_installable": true,
- "_location": "/shellwords",
- "_phantomChildren": {},
- "_requested": {
- "raw": "shellwords@^0.1.0",
- "scope": null,
- "escapedName": "shellwords",
- "name": "shellwords",
- "rawSpec": "^0.1.0",
- "spec": ">=0.1.0 <0.2.0",
- "type": "range"
- },
- "_requiredBy": [
- "/node-notifier"
- ],
- "_resolved": "https://registry.npmjs.org/shellwords/-/shellwords-0.1.0.tgz",
- "_shasum": "66afd47b6a12932d9071cbfd98a52e785cd0ba14",
- "_shrinkwrap": null,
- "_spec": "shellwords@^0.1.0",
- "_where": "/home/king/Desktop/FINAL/AhMyth/app/node_modules/node-notifier",
- "author": {
- "name": "Jimmy Cuadra",
- "email": "jimmy@jimmycuadra.com",
- "url": "http://jimmycuadra.com/"
- },
- "bugs": {
- "url": "https://github.com/jimmycuadra/shellwords/issues"
- },
- "dependencies": {},
- "description": "Manipulate strings according to the word parsing rules of the UNIX Bourne shell.",
- "devDependencies": {
- "jasmine-node": "~1.0.26",
- "nodewatch": "~0.1.0"
- },
- "directories": {},
- "dist": {
- "shasum": "66afd47b6a12932d9071cbfd98a52e785cd0ba14",
- "tarball": "https://registry.npmjs.org/shellwords/-/shellwords-0.1.0.tgz"
- },
- "homepage": "https://github.com/jimmycuadra/shellwords",
- "main": "./lib/shellwords",
- "maintainers": [
- {
- "name": "jimmycuadra",
- "email": "jimmycuadra@gmail.com"
- }
- ],
- "name": "shellwords",
- "optionalDependencies": {},
- "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",
- "repository": {
- "type": "git",
- "url": "git://github.com/jimmycuadra/shellwords.git"
- },
- "scripts": {
- "test": "cake spec"
- },
- "version": "0.1.0"
- }
|