├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ └── release.yml ├── .gitignore ├── .mocharc.js ├── .travis.yml ├── data ├── metadata.json └── packages.json ├── example.js ├── hostnames.js ├── lib └── stats-tpl.js ├── package.json ├── readme.md ├── scripts ├── build.js ├── stats.js └── update.js └── test ├── metadata.js ├── repos.js └── stats.js /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nice-registry/all-the-package-repos/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nice-registry/all-the-package-repos/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nice-registry/all-the-package-repos/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | .npmrc 3 | .cache/ 4 | .idea/ 5 | node_modules/ 6 | -------------------------------------------------------------------------------- /.mocharc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | timeout: 10000, 3 | }; 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nice-registry/all-the-package-repos/HEAD/.travis.yml -------------------------------------------------------------------------------- /data/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nice-registry/all-the-package-repos/HEAD/data/metadata.json -------------------------------------------------------------------------------- /data/packages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nice-registry/all-the-package-repos/HEAD/data/packages.json -------------------------------------------------------------------------------- /example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nice-registry/all-the-package-repos/HEAD/example.js -------------------------------------------------------------------------------- /hostnames.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nice-registry/all-the-package-repos/HEAD/hostnames.js -------------------------------------------------------------------------------- /lib/stats-tpl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nice-registry/all-the-package-repos/HEAD/lib/stats-tpl.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nice-registry/all-the-package-repos/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nice-registry/all-the-package-repos/HEAD/readme.md -------------------------------------------------------------------------------- /scripts/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nice-registry/all-the-package-repos/HEAD/scripts/build.js -------------------------------------------------------------------------------- /scripts/stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nice-registry/all-the-package-repos/HEAD/scripts/stats.js -------------------------------------------------------------------------------- /scripts/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nice-registry/all-the-package-repos/HEAD/scripts/update.js -------------------------------------------------------------------------------- /test/metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nice-registry/all-the-package-repos/HEAD/test/metadata.js -------------------------------------------------------------------------------- /test/repos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nice-registry/all-the-package-repos/HEAD/test/repos.js -------------------------------------------------------------------------------- /test/stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nice-registry/all-the-package-repos/HEAD/test/stats.js --------------------------------------------------------------------------------