libnpmpublish
Advanced tools
Comparing version 1.1.0 to 1.1.1
@@ -5,2 +5,12 @@ # Change Log | ||
<a name="1.1.1"></a> | ||
## [1.1.1](https://github.com/npm/libnpmpublish/compare/v1.1.0...v1.1.1) (2019-01-22) | ||
### Bug Fixes | ||
* **auth:** send username in correct key ([#3](https://github.com/npm/libnpmpublish/issues/3)) ([38422d0](https://github.com/npm/libnpmpublish/commit/38422d0)) | ||
<a name="1.1.0"></a> | ||
@@ -7,0 +17,0 @@ # [1.1.0](https://github.com/npm/libnpmpublish/compare/v1.0.1...v1.1.0) (2018-08-31) |
{ | ||
"name": "libnpmpublish", | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"description": "Programmatic API for the bits behind npm publish and unpublish", | ||
@@ -5,0 +5,0 @@ "author": { |
@@ -91,3 +91,3 @@ 'use strict' | ||
manifest._npmUser = { | ||
username: auth.username, | ||
name: auth.username, | ||
email: auth.email | ||
@@ -94,0 +94,0 @@ } |
@@ -11,3 +11,3 @@ # libnpmpublish [![npm version](https://img.shields.io/npm/v/libnpmpublish.svg)](https://npm.im/libnpmpublish) [![license](https://img.shields.io/npm/l/libnpmpublish.svg)](https://npm.im/libnpmpublish) [![Travis](https://img.shields.io/travis/npm/libnpmpublish.svg)](https://travis-ci.org/npm/libnpmpublish) [![AppVeyor](https://ci.appveyor.com/api/projects/status/github/zkat/libnpmpublish?svg=true)](https://ci.appveyor.com/project/zkat/libnpmpublish) [![Coverage Status](https://coveralls.io/repos/github/npm/libnpmpublish/badge.svg?branch=latest)](https://coveralls.io/github/npm/libnpmpublish?branch=latest) | ||
```js | ||
const search = require('libnpmpublish') | ||
const { publish, unpublish } = require('libnpmpublish') | ||
@@ -18,3 +18,3 @@ ``` | ||
`$ npm install libnpmsearch` | ||
`$ npm install libnpmpublish` | ||
@@ -27,4 +27,4 @@ ## Table of Contents | ||
* [publish/unpublish opts](#opts) | ||
* [`search()`](#search) | ||
* [`search.stream()`](#search-stream) | ||
* [`publish()`](#publish) | ||
* [`unpublish()`](#unpublish) | ||
@@ -31,0 +31,0 @@ ### API |
@@ -200,3 +200,3 @@ 'use strict' | ||
_npmUser: { | ||
username: 'other', | ||
name: 'other', | ||
email: 'other@idk.tech' | ||
@@ -286,3 +286,3 @@ }, | ||
_npmUser: { | ||
username: 'other', | ||
name: 'other', | ||
email: 'other@idk.tech' | ||
@@ -437,3 +437,3 @@ }, | ||
_npmUser: { | ||
username: 'zkat', | ||
name: 'zkat', | ||
email: 'kat@example.tech' | ||
@@ -440,0 +440,0 @@ }, |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
84343