├── .gitignore ├── .travis.yml ├── LICENSE.txt ├── README.md ├── bin └── top-npm-users.js ├── index.js ├── package.json ├── test ├── fixtures │ ├── bejesus-cli.json │ └── fake-changes-stream.js └── npm-user-download-counts.js └── top-npm-users.md.mustache /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoe/top-npm-users/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoe/top-npm-users/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoe/top-npm-users/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoe/top-npm-users/HEAD/README.md -------------------------------------------------------------------------------- /bin/top-npm-users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoe/top-npm-users/HEAD/bin/top-npm-users.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoe/top-npm-users/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoe/top-npm-users/HEAD/package.json -------------------------------------------------------------------------------- /test/fixtures/bejesus-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoe/top-npm-users/HEAD/test/fixtures/bejesus-cli.json -------------------------------------------------------------------------------- /test/fixtures/fake-changes-stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoe/top-npm-users/HEAD/test/fixtures/fake-changes-stream.js -------------------------------------------------------------------------------- /test/npm-user-download-counts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoe/top-npm-users/HEAD/test/npm-user-download-counts.js -------------------------------------------------------------------------------- /top-npm-users.md.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoe/top-npm-users/HEAD/top-npm-users.md.mustache --------------------------------------------------------------------------------