dudiharush / npm-author-name

Gets the npm author name from npmrc file, or fallback to git config file

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

description

Get/Set your npm author name from npmrc or gitconfig files

installation

npm i npm-author-name

usage example

import { setAuthorName, getAuthorName } from 'npm-author-name';

if(!getAuthorName()) {
    setAuthorName("Some Name");
}
console.log("author name", getAuthorName())

About

Gets the npm author name from npmrc file, or fallback to git config file

License:MIT License


Languages

Language:TypeScript 100.0%