emailtypocheck
Version:
Check top level domains for emails or URLs
21 lines (14 loc) • 317 B
Plain Text
.PHONY: patch sign publish install test
build:
npm run build
patch:
npm version patch
sign:
pkgsign sign --signer pgp --pgp-private-key-path /home/zaur/.gnupg/qutorial.asc --pgp-private-key-passphrase $(mypassphrase) .
publish: sign
npm publish
install:
npm i -g pkgsign mocha
npm i
test: build
npm test