package.json
 1  {
 2    "name": "repeat-string",
 3    "description": "Repeat the given string n times. Fastest implementation for repeating a string.",
 4    "version": "1.6.1",
 5    "homepage": "https://github.com/jonschlinkert/repeat-string",
 6    "author": "Jon Schlinkert (http://github.com/jonschlinkert)",
 7    "contributors": [
 8      "Brian Woodward <brian.woodward@gmail.com> (https://github.com/doowb)",
 9      "Jon Schlinkert <jon.schlinkert@sellside.com> (http://twitter.com/jonschlinkert)",
10      "Linus Unnebäck <linus@folkdatorn.se> (http://linus.unnebäck.se)",
11      "Thijs Busser <tbusser@gmail.com> (http://tbusser.net)",
12      "Titus <tituswormer@gmail.com> (wooorm.com)"
13    ],
14    "repository": "jonschlinkert/repeat-string",
15    "bugs": {
16      "url": "https://github.com/jonschlinkert/repeat-string/issues"
17    },
18    "license": "MIT",
19    "files": [
20      "index.js"
21    ],
22    "main": "index.js",
23    "engines": {
24      "node": ">=0.10"
25    },
26    "scripts": {
27      "test": "mocha"
28    },
29    "devDependencies": {
30      "ansi-cyan": "^0.1.1",
31      "benchmarked": "^0.2.5",
32      "gulp-format-md": "^0.1.11",
33      "isobject": "^2.1.0",
34      "mocha": "^3.1.2",
35      "repeating": "^3.0.0",
36      "text-table": "^0.2.0",
37      "yargs-parser": "^4.0.2"
38    },
39    "keywords": [
40      "fast",
41      "fastest",
42      "fill",
43      "left",
44      "left-pad",
45      "multiple",
46      "pad",
47      "padding",
48      "repeat",
49      "repeating",
50      "repetition",
51      "right",
52      "right-pad",
53      "string",
54      "times"
55    ],
56    "verb": {
57      "toc": false,
58      "layout": "default",
59      "tasks": [
60        "readme"
61      ],
62      "plugins": [
63        "gulp-format-md"
64      ],
65      "related": {
66        "list": [
67          "repeat-element"
68        ]
69      },
70      "helpers": [
71        "./benchmark/helper.js"
72      ],
73      "reflinks": [
74        "verb"
75      ]
76    }
77  }