Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/doug-wade/secure-shrinkwrap
- Owner: doug-wade
- Created: 2016-12-13T00:10:26.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2016-12-13T00:22:51.000Z (about 8 years ago)
- Last Synced: 2024-11-21T12:47:18.030Z (about 2 months ago)
- Language: JavaScript
- Size: 1.95 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
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"
}
}