source: imaps-frontend/node_modules/string.prototype.repeat/package.json

main
Last change on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • Property mode set to 100644
File size: 1.2 KB
Line 
1{
2 "name": "string.prototype.repeat",
3 "version": "1.0.0",
4 "description": "A robust & optimized `String.prototype.repeat` polyfill, based on the ECMAScript 6 specification.",
5 "homepage": "https://mths.be/repeat",
6 "main": "index.js",
7 "exports": {
8 ".": "./index.js",
9 "./auto": "./auto.js",
10 "./shim": "./shim.js",
11 "./getPolyfill": "./getPolyfill.js",
12 "./implementation": "./implementation.js",
13 "./package.json": "./package.json"
14 },
15 "keywords": [
16 "string",
17 "repeat",
18 "es6",
19 "ecmascript",
20 "polyfill"
21 ],
22 "license": "MIT",
23 "author": {
24 "name": "Mathias Bynens",
25 "url": "https://mathiasbynens.be/"
26 },
27 "repository": {
28 "type": "git",
29 "url": "https://github.com/mathiasbynens/String.prototype.repeat.git"
30 },
31 "bugs": "https://github.com/mathiasbynens/String.prototype.repeat/issues",
32 "scripts": {
33 "pretest": "es-shim-api --bound",
34 "test": "npm run tests-only",
35 "tests-only": "tape 'tests/*.js'",
36 "cover": "istanbul cover --report html --verbose --dir coverage tape 'tests/*.js'"
37 },
38 "dependencies": {
39 "define-properties": "^1.1.3",
40 "es-abstract": "^1.17.5"
41 },
42 "devDependencies": {
43 "@es-shims/api": "^2.1.2",
44 "function-bind": "^1.1.1",
45 "functions-have-names": "^1.2.1",
46 "istanbul": "^0.4.5",
47 "tape": "^5.0.0"
48 }
49}
Note: See TracBrowser for help on using the repository browser.