We are migrating from bower package manager to npm. And we have faced with issue that we cannot install cryptojslib as npm module.
Our package json file looks like next:
"dependencies": { "backbone": "~1.3.2", "codemirror": "5.29.0", "cryptojslib": "sytelus/CryptoJS.git#v3.1.2", }
As you can see we want to install cryptojslib from github repository with specific tag version.
While npm installing we realized that we cannot install cryptojslib package via npm because cryptojslib repository has no package.json file. Please add this file to github repository.
We are migrating from bower package manager to npm. And we have faced with issue that we cannot install cryptojslib as npm module.
Our package json file looks like next:
"dependencies": { "backbone": "~1.3.2", "codemirror": "5.29.0", "cryptojslib": "sytelus/CryptoJS.git#v3.1.2", }As you can see we want to install cryptojslib from github repository with specific tag version.
While npm installing we realized that we cannot install cryptojslib package via npm because cryptojslib repository has no package.json file. Please add this file to github repository.