mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1.3 KiB
31 lines
1.3 KiB
{
|
|
"name": "abbrev",
|
|
"version": "1.0.7",
|
|
"description": "Like ruby's abbrev module, but in js",
|
|
"author": {
|
|
"name": "Isaac Z. Schlueter",
|
|
"email": "i@izs.me"
|
|
},
|
|
"main": "abbrev.js",
|
|
"scripts": {
|
|
"test": "tap test.js --cov"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+ssh://git@github.com/isaacs/abbrev-js.git"
|
|
},
|
|
"license": "ISC",
|
|
"devDependencies": {
|
|
"tap": "^1.2.0"
|
|
},
|
|
"readme": "# abbrev-js\n\nJust like [ruby's Abbrev](http://apidock.com/ruby/Abbrev).\n\nUsage:\n\n var abbrev = require(\"abbrev\");\n abbrev(\"foo\", \"fool\", \"folding\", \"flop\");\n \n // returns:\n { fl: 'flop'\n , flo: 'flop'\n , flop: 'flop'\n , fol: 'folding'\n , fold: 'folding'\n , foldi: 'folding'\n , foldin: 'folding'\n , folding: 'folding'\n , foo: 'foo'\n , fool: 'fool'\n }\n\nThis is handy for command-line scripts, or other cases where you want to be able to accept shorthands.\n",
|
|
"readmeFilename": "README.md",
|
|
"bugs": {
|
|
"url": "https://github.com/isaacs/abbrev-js/issues"
|
|
},
|
|
"homepage": "https://github.com/isaacs/abbrev-js#readme",
|
|
"_id": "abbrev@1.0.7",
|
|
"_shasum": "5b6035b2ee9d4fb5cf859f08a9be81b208491843",
|
|
"_resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.0.7.tgz",
|
|
"_from": "abbrev@>=1.0.7 <1.1.0"
|
|
}
|
|
|