Use dependencias de un GitLab privado con NPM
Estoy tratando de instalar dependencias de NPM desde una instancia privada de GitLab.
Entonces, tengo mi repositorio con archivos básicos
Y agregué esta dependencia en elpackage.json
en mi proyecto
"node-demo-package": "https://oauth2:<ACCESS TOKEN>@gitlab.fullurl.git"
Pero cuando corronpm install
, Recibo este mensaje de error:
npm ERR! code ENOPACKAGEJSON
npm ERR! package.json Non-registry package missing package.json: node-demo-package@https://oauth2:<ACCESS TOKEN>@gitlab.fullurl.git.
npm ERR! package.json npm can't find a package.json file in your current directory.
npm ERR! A complete log of this run can be found in:
npm ERR! /Users/arnaud.delante/.npm/_logs/2018-01-24T15_05_49_456Z-debug.log
Lo cual no entiendo ya que hay unpackage.json
como se muestra en la captura de pantalla.
Aquí está
{
"name": "demo-package",
"version": "1.0.0",
"description": "Test pasckage",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "[email protected]"
},
"author": "Arnaud Delante",
"license": "MIT"
}
Ya intenté cambiarhttps
porgit+https
pero me sale otro error
npm ERR! Error while executing:
npm ERR! /usr/local/bin/git ls-remote -h -t https://oauth2:<ACCES TOKEN>@gitlab.fullrul.git
npm ERR!
npm ERR! remote: You are not allowed to download code from this project.
npm ERR! fatal: unable to access 'https://oauth2:<ACCES TOKEN>@gitlab.fullrul.git': The requested URL returned error: 403
npm ERR!
npm ERR! exited with error code: 128
npm ERR! A complete log of this run can be found in:
npm ERR! /Users/arnaud.delante/.npm/_logs/2018-01-24T17_19_16_677Z-debug.log
Lo cual es extraño porque la ficha es correcta.
¿Tendrías alguna idea?