react-scripts
Version:
Configuration and scripts for Create React App.
69 lines (68 loc) • 2.37 kB
JSON
{
"_args": [
[
"shellwords@^0.1.0",
"/Users/dan/p/create-react-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": {
"name": "shellwords",
"raw": "shellwords@^0.1.0",
"rawSpec": "^0.1.0",
"scope": null,
"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": "/Users/dan/p/create-react-app/node_modules/node-notifier",
"author": {
"email": "jimmy@jimmycuadra.com",
"name": "Jimmy Cuadra",
"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"
}