Welcome to mirror list, hosted at ThFree Co, Russian Federation.

package.json « abbrev « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d3e3a661edcd3cee7602c4dc6f2802b48966cfbb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
  "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"
}