Publish npm packages to NuGet using package.json
npm install nuget-publishThis small utility makes it possible to publish npm packages to NuGet directly using
the metadata provided by your existing package.json.
Add nuget-publish to the devDependencies of your package:
```
yarn add --dev nuget-publish
Now you can use the nuget-publish command in your npm scripts to publish yourpostpublish
package to npm. You may add a script to automatize it:
```
"scripts": {
"postpublish": "nuget-publish"
}
Code and documentation copyright 2016 Federico Zivolo. Code released under the MIT license. Docs released under Creative Commons.