├── .dockerignore ├── .env.development ├── .gitignore ├── Dockerfile ├── LICENSE ├── Procfile ├── README.md ├── app.js ├── bin └── registry ├── lib ├── gitlab.js └── shasum_url.js ├── middleware ├── curry.js └── request_hostname.js ├── package.json └── routes └── index.js /.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .git 3 | .env.local 4 | -------------------------------------------------------------------------------- /.env.development: -------------------------------------------------------------------------------- 1 | DEBUG=registry* 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilson63/npm-gitlab/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilson63/npm-gitlab/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilson63/npm-gitlab/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: node bin/registry 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilson63/npm-gitlab/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilson63/npm-gitlab/HEAD/app.js -------------------------------------------------------------------------------- /bin/registry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilson63/npm-gitlab/HEAD/bin/registry -------------------------------------------------------------------------------- /lib/gitlab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilson63/npm-gitlab/HEAD/lib/gitlab.js -------------------------------------------------------------------------------- /lib/shasum_url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilson63/npm-gitlab/HEAD/lib/shasum_url.js -------------------------------------------------------------------------------- /middleware/curry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilson63/npm-gitlab/HEAD/middleware/curry.js -------------------------------------------------------------------------------- /middleware/request_hostname.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilson63/npm-gitlab/HEAD/middleware/request_hostname.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilson63/npm-gitlab/HEAD/package.json -------------------------------------------------------------------------------- /routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilson63/npm-gitlab/HEAD/routes/index.js --------------------------------------------------------------------------------