Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fezvrasta/nuget-publish
Publish npm packages to NuGet using package.json
https://github.com/fezvrasta/nuget-publish
nuget
Last synced: 4 months ago
JSON representation
Publish npm packages to NuGet using package.json
- Host: GitHub
- URL: https://github.com/fezvrasta/nuget-publish
- Owner: FezVrasta
- License: mit
- Created: 2017-07-27T12:41:59.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2022-01-15T04:37:15.000Z (about 3 years ago)
- Last Synced: 2024-06-19T00:27:47.852Z (8 months ago)
- Topics: nuget
- Language: JavaScript
- Size: 104 KB
- Stars: 1
- Watchers: 3
- Forks: 3
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Nuget Publish
This small utility makes it possible to publish npm packages to NuGet directly using
the metadata provided by your existing `package.json`.## Usage
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 your
package to npm. You may add a `postpublish` script to automatize it:```
"scripts": {
"postpublish": "nuget-publish"
}
```### Copyright and license
Code and documentation copyright 2016 **Federico Zivolo**. Code released under the [MIT license](LICENSE.md). Docs released under Creative Commons.