1.0.7 • Published 4 years ago

npm-author-name v1.0.7

Weekly downloads
3
License
MIT
Repository
github
Last release
4 years ago

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())