├── .editorconfig ├── .eslintrc.json ├── .gitattributes ├── .github └── contributing.md ├── .gitignore ├── .npmrc ├── .travis.yml ├── .verb.md ├── CHANGELOG.md ├── LICENSE ├── README.md ├── examples ├── get-maintainer-repos.js ├── get-repo-downloads.js └── view.js ├── index.js ├── lib ├── config.js ├── list.js ├── models │ ├── base.js │ ├── maintainer.js │ └── repo.js ├── plugins │ └── downloads.js ├── registry.js ├── utils.js └── view.js ├── package.json └── test.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doowb/npm-api/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doowb/npm-api/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doowb/npm-api/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doowb/npm-api/HEAD/.github/contributing.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doowb/npm-api/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doowb/npm-api/HEAD/.travis.yml -------------------------------------------------------------------------------- /.verb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doowb/npm-api/HEAD/.verb.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doowb/npm-api/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doowb/npm-api/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doowb/npm-api/HEAD/README.md -------------------------------------------------------------------------------- /examples/get-maintainer-repos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doowb/npm-api/HEAD/examples/get-maintainer-repos.js -------------------------------------------------------------------------------- /examples/get-repo-downloads.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doowb/npm-api/HEAD/examples/get-repo-downloads.js -------------------------------------------------------------------------------- /examples/view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doowb/npm-api/HEAD/examples/view.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doowb/npm-api/HEAD/index.js -------------------------------------------------------------------------------- /lib/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doowb/npm-api/HEAD/lib/config.js -------------------------------------------------------------------------------- /lib/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doowb/npm-api/HEAD/lib/list.js -------------------------------------------------------------------------------- /lib/models/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doowb/npm-api/HEAD/lib/models/base.js -------------------------------------------------------------------------------- /lib/models/maintainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doowb/npm-api/HEAD/lib/models/maintainer.js -------------------------------------------------------------------------------- /lib/models/repo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doowb/npm-api/HEAD/lib/models/repo.js -------------------------------------------------------------------------------- /lib/plugins/downloads.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doowb/npm-api/HEAD/lib/plugins/downloads.js -------------------------------------------------------------------------------- /lib/registry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doowb/npm-api/HEAD/lib/registry.js -------------------------------------------------------------------------------- /lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doowb/npm-api/HEAD/lib/utils.js -------------------------------------------------------------------------------- /lib/view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doowb/npm-api/HEAD/lib/view.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doowb/npm-api/HEAD/package.json -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doowb/npm-api/HEAD/test.js --------------------------------------------------------------------------------