diff --git a/.all-contributorsrc b/.all-contributorsrc new file mode 100644 index 0000000..d843473 --- /dev/null +++ b/.all-contributorsrc @@ -0,0 +1,69 @@ +{ + "projectName": "ts-debounce", + "projectOwner": "chodorowicz", + "repoType": "github", + "repoHost": "https://github.com", + "files": [ + "README.md" + ], + "imageSize": 100, + "commit": true, + "commitConvention": "none", + "contributors": [ + { + "login": "zacnomore", + "name": "Zac", + "avatar_url": "https://avatars3.githubusercontent.com/u/5839548?v=4", + "profile": "http://zacharysvoboda.com", + "contributions": [ + "code" + ] + }, + { + "login": "karol-majewski", + "name": "Karol Majewski", + "avatar_url": "https://avatars1.githubusercontent.com/u/20233319?v=4", + "profile": "https://github.com/karol-majewski", + "contributions": [ + "code" + ] + }, + { + "login": "Tuizi", + "name": "Fabien Rogeret", + "avatar_url": "https://avatars2.githubusercontent.com/u/2027148?v=4", + "profile": "https://github.com/Tuizi", + "contributions": [ + "code" + ] + }, + { + "login": "iheidari", + "name": "Iman", + "avatar_url": "https://avatars3.githubusercontent.com/u/1315090?v=4", + "profile": "https://github.com/iheidari", + "contributions": [ + "code" + ] + }, + { + "login": "juanmendes", + "name": "juanmendes", + "avatar_url": "https://avatars.githubusercontent.com/u/549331?v=4", + "profile": "https://github.com/juanmendes", + "contributions": [ + "ideas" + ] + }, + { + "login": "sanduluca", + "name": "sanduluca", + "avatar_url": "https://avatars.githubusercontent.com/u/56228534?v=4", + "profile": "https://github.com/sanduluca", + "contributions": [ + "code" + ] + } + ], + "contributorsPerLine": 7 +} diff --git a/README.md b/README.md index 77d157b..4a2d765 100644 --- a/README.md +++ b/README.md @@ -4,12 +4,10 @@ [![npm](https://img.shields.io/npm/v/ts-debounce.svg)](https://www.npmjs.com/package/ts-debounce) [![npm bundle size (minified + gzip)](https://img.shields.io/bundlephobia/minzip/ts-debounce.svg)](https://www.npmjs.com/package/ts-debounce) [![npm type definitions](https://img.shields.io/npm/types/ts-debounce.svg)](https://www.npmjs.com/package/ts-debounce) -[![David](https://img.shields.io/david/chodorowicz/ts-debounce.svg)](https://david-dm.org/chodorowicz/ts-debounce) -[![David](https://img.shields.io/david/peer/chodorowicz/ts-debounce.svg)](https://david-dm.org/chodorowicz/ts-debounce) -[![All Contributors](https://img.shields.io/badge/all_contributors-4-orange.svg?style=flat-square)](#contributors-) +[![All Contributors](https://img.shields.io/badge/all_contributors-6-orange.svg?style=flat-square)](#contributors-) @@ -88,3 +86,28 @@ This implementation is based upon following sources: - version 3 - Promise must be available in the global namespace - version 2 - TypeScript 3.3 - version 1 - TypeScript 2.0 + +## Contributors ✨ + +Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)): + + + + + + + + + + + + + +

Zac

💻

Karol Majewski

💻

Fabien Rogeret

💻

Iman

💻

juanmendes

🤔

sanduluca

💻
+ + + + + + +This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome! diff --git a/package-lock.json b/package-lock.json index a28bd0d..d686d01 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9,7 +9,7 @@ "license": "MIT", "devDependencies": { "@types/jest": "^26.0.15", - "all-contributors-cli": "^6.19.0", + "all-contributors-cli": "^6.20.0", "jest": "^26.6.3", "microbundle": "^0.12.4", "np": "^7.0.0", @@ -2329,9 +2329,9 @@ } }, "node_modules/all-contributors-cli": { - "version": "6.19.0", - "resolved": "https://registry.npmjs.org/all-contributors-cli/-/all-contributors-cli-6.19.0.tgz", - "integrity": "sha512-QJN4iLeTeYpTZJES8XFTzQ+itA1qSyBbxLapJLtwrnY+kipyRhCX49fS/s/qftQQym9XLATMZUpUeEeJSox1sw==", + "version": "6.20.0", + "resolved": "https://registry.npmjs.org/all-contributors-cli/-/all-contributors-cli-6.20.0.tgz", + "integrity": "sha512-trEQlL1s1u8FSWSwY2w9uL4GCG7Fo9HIW5rm5LtlE0SQHSolfXQBzJib07Qes5j52/t72wjuE6sEKkuRrwiuuQ==", "dev": true, "dependencies": { "@babel/runtime": "^7.7.6", @@ -17114,9 +17114,9 @@ } }, "all-contributors-cli": { - "version": "6.19.0", - "resolved": "https://registry.npmjs.org/all-contributors-cli/-/all-contributors-cli-6.19.0.tgz", - "integrity": "sha512-QJN4iLeTeYpTZJES8XFTzQ+itA1qSyBbxLapJLtwrnY+kipyRhCX49fS/s/qftQQym9XLATMZUpUeEeJSox1sw==", + "version": "6.20.0", + "resolved": "https://registry.npmjs.org/all-contributors-cli/-/all-contributors-cli-6.20.0.tgz", + "integrity": "sha512-trEQlL1s1u8FSWSwY2w9uL4GCG7Fo9HIW5rm5LtlE0SQHSolfXQBzJib07Qes5j52/t72wjuE6sEKkuRrwiuuQ==", "dev": true, "requires": { "@babel/runtime": "^7.7.6", diff --git a/package.json b/package.json index 80255af..b3249d1 100644 --- a/package.json +++ b/package.json @@ -28,7 +28,7 @@ "license": "MIT", "devDependencies": { "@types/jest": "^26.0.15", - "all-contributors-cli": "^6.19.0", + "all-contributors-cli": "^6.20.0", "jest": "^26.6.3", "microbundle": "^0.12.4", "np": "^7.0.0",