Socket
Book a DemoInstallSign in
Socket

publishers

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

publishers

Provide a package name, get a list of every version, and who published it

latest
Source
npmnpm
Version
2.0.1
Version published
Maintainers
1
Created
Source

publishers Version Badge

dependency status dev dependency status License Downloads

npm badge

Provide a package name, get a list of every version, and who published it.

Example

CLI

> publishers publishers
┌─────────┬──────────┬────────────────────┬────────────────────────────┐
│ (index) │   name   │       email        │          created           │
├─────────┼──────────┼────────────────────┼────────────────────────────┤
│ v1.0.1  │ 'ljharb' │ 'ljharb@gmail.com' │ '2020-02-04T02:26:10.321Z' │
│ v1.0.0  │ 'ljharb' │ 'ljharb@gmail.com' │ '2020-02-03T21:34:48.957Z' │
└─────────┴──────────┴────────────────────┴────────────────────────────┘
> publishers publishers --json
{
	"v1.0.1": {
		"name": "ljharb",
		"email": "ljharb@gmail.com",
		"created": "2020-02-04T02:26:10.321Z"
	},
	"v1.0.0": {
		"name": "ljharb",
		"email": "ljharb@gmail.com",
		"created": "2020-02-03T21:34:48.957Z"
	}
}
> publishers publishers --json --sort=asc
{
	"v1.0.0": {
		"name": "ljharb",
		"email": "ljharb@gmail.com",
		"created": "2020-02-03T21:34:48.957Z"
	},
	"v1.0.1": {
		"name": "ljharb",
		"email": "ljharb@gmail.com",
		"created": "2020-02-04T02:26:10.321Z"
	}
}

API

const assert = require('assert');
const { execSync } = require('child_process');
const getPublishers = require('publishers');

const results = getPublishers('publishers').then((results) => {
	assert.deepEqual(
		results,
		JSON.parse(String(execSync('npx publishers --json publishers')))
	);
}).catch((e) => {
	console.error(e);
	process.exit(1);
});

Keywords

npm

FAQs

Package last updated on 19 Dec 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts