Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/doug-wade/secure-shrinkwrap

Make your shrinkwrap securer
https://github.com/doug-wade/secure-shrinkwrap

Last synced: 17 days ago
JSON representation

Make your shrinkwrap securer

Awesome Lists containing this project

README

        

# secure-shrinkwrap

Resolves a security disclosure on [npm shrinkwrap](https://medium.com/@deian/npm-shrinkwrap-allows-remote-code-execution-63e6e0a566a7).

## Usage

In your package.json, add `secure-shrinkwrap` as a devDependency and then run it as a preinstall script

```javascript
{
"devDependencies": {
...
"secure-shrinkwrap": "0.0.1"
},
"scripts": {
...
"preinstall": "secure-shrinkwrap"
}
}