{"versions":{"5.20.0":{"name":"getmac","version":"5.20.0","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["es2019","export-default","getmac","ifconfig","ipconfig","mac","mac-address","node","typed","types","typescript"],"badges":{"list":["githubworkflow","npmversion","npmdownloads","daviddm","daviddmdev","---","githubsponsors","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"githubWorkflow":"bevry","githubSponsorsUsername":"balupton","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","githubUsername":"bevry","githubRepository":"getmac","githubSlug":"bevry/getmac","npmPackageName":"getmac"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://github.com/balupton"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/Ogdentrod"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"Isaac Huang","url":"https://github.com/caasi"},{"name":"Jan Pilzer","url":"https://github.com/Hirse"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"zboszor","url":"https://github.com/zboszor"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=10"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["source","typescript","import"],"engines":false},{"description":"TypeScript compiled against ES2019 for Node.js 10 || 12 || 14 || 16 with Require for modules","directory":"edition-es2019","entry":"index.js","tags":["compiled","javascript","es2019","require"],"engines":{"node":"10 || 12 || 14 || 16","browsers":false}},{"description":"TypeScript compiled against ES2019 for Node.js 12 || 14 || 16 with Import for modules","directory":"edition-es2019-esm","entry":"index.js","tags":["compiled","javascript","es2019","import"],"engines":{"node":"12 || 14 || 16","browsers":false}}],"types":"./compiled-types/","type":"module","main":"edition-es2019/index.js","exports":{"node":{"import":"./edition-es2019-esm/index.js","require":"./edition-es2019/index.js"}},"dependencies":{"@types/node":"^16.4.7"},"devDependencies":{"@bevry/update-contributors":"^1.19.0","@typescript-eslint/eslint-plugin":"^4.28.5","@typescript-eslint/parser":"^4.28.5","assert-helpers":"^8.4.0","eslint":"^7.31.0","eslint-config-bevry":"^3.27.0","eslint-config-prettier":"^8.3.0","eslint-plugin-prettier":"^3.4.0","kava":"^5.14.0","make-deno-edition":"^1.3.0","prettier":"^2.3.2","projectz":"^2.21.0","surge":"^0.23.0","typedoc":"^0.21.4","typescript":"4.3.5","valid-directory":"^3.7.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:deno && npm run our:compile:edition-es2019 && npm run our:compile:edition-es2019-esm && npm run our:compile:types","our:compile:deno":"make-deno-edition --attempt","our:compile:edition-es2019":"tsc --module commonjs --target ES2019 --outDir ./edition-es2019 --project tsconfig.json && ( test ! -d edition-es2019/source || ( mv edition-es2019/source edition-temp && rm -Rf edition-es2019 && mv edition-temp edition-es2019 ) ) && echo '{\"type\": \"commonjs\"}' > edition-es2019/package.json","our:compile:edition-es2019-esm":"tsc --module ESNext --target ES2019 --outDir ./edition-es2019-esm --project tsconfig.json && ( test ! -d edition-es2019-esm/source || ( mv edition-es2019-esm/source edition-temp && rm -Rf edition-es2019-esm && mv edition-temp edition-es2019-esm ) ) && echo '{\"type\": \"module\"}' > edition-es2019-esm/package.json","our:compile:types":"tsc --project tsconfig.json --emitDeclarationOnly --declaration --declarationMap --declarationDir ./compiled-types && ( test ! -d compiled-types/source || ( mv compiled-types/source edition-temp && rm -Rf compiled-types && mv edition-temp compiled-types ) )","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz","our:meta:contributors":"update-contributors","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --exclude '**/+(*test*|node_modules)' --excludeExternals --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier","our:verify:directory":"valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write .","test":"node ./edition-es2019/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"gitHead":"e7cd9844b817a1faac9c5e2e60030f98a528c92d","_id":"getmac@5.20.0","_nodeVersion":"14.17.3","_npmVersion":"6.14.13","dist":{"shasum":"d549e69da95393084ede7881b9996f94d89e34df","size":9056,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-5.20.0.tgz","integrity":"sha512-O9T855fb+Hx9dsTJHNv72ZUuA6Y18+BO/0ypPXf6s/tunzXqhc3kbQkNAl+9HVKVlwkWmglHS4LMoJ9YbymKYQ=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_5.20.0_1627593804565_0.5169399776839929"},"_hasShrinkwrap":false,"publish_time":1627593804736,"_cnpm_publish_time":1627593804736,"_cnpmcore_publish_time":"2021-12-16T22:28:50.948Z"},"5.20.0-next.1627593726.e7cd9844b817a1faac9c5e2e60030f98a528c92d":{"name":"getmac","version":"5.20.0-next.1627593726.e7cd9844b817a1faac9c5e2e60030f98a528c92d","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["es2019","export-default","getmac","ifconfig","ipconfig","mac","mac-address","node","typed","types","typescript"],"badges":{"list":["githubworkflow","npmversion","npmdownloads","daviddm","daviddmdev","---","githubsponsors","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"githubWorkflow":"bevry","githubSponsorsUsername":"balupton","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","githubUsername":"bevry","githubRepository":"getmac","githubSlug":"bevry/getmac","npmPackageName":"getmac"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://github.com/balupton"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/Ogdentrod"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"Isaac Huang","url":"https://github.com/caasi"},{"name":"Jan Pilzer","url":"https://github.com/Hirse"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"zboszor","url":"https://github.com/zboszor"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=10"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["source","typescript","import"],"engines":false},{"description":"TypeScript compiled against ES2019 for Node.js 10 || 12 || 14 || 16 with Require for modules","directory":"edition-es2019","entry":"index.js","tags":["compiled","javascript","es2019","require"],"engines":{"node":"10 || 12 || 14 || 16","browsers":false}},{"description":"TypeScript compiled against ES2019 for Node.js 12 || 14 || 16 with Import for modules","directory":"edition-es2019-esm","entry":"index.js","tags":["compiled","javascript","es2019","import"],"engines":{"node":"12 || 14 || 16","browsers":false}}],"types":"./compiled-types/","type":"module","main":"edition-es2019/index.js","exports":{"node":{"import":"./edition-es2019-esm/index.js","require":"./edition-es2019/index.js"}},"dependencies":{"@types/node":"^16.4.7"},"devDependencies":{"@bevry/update-contributors":"^1.19.0","@typescript-eslint/eslint-plugin":"^4.28.5","@typescript-eslint/parser":"^4.28.5","assert-helpers":"^8.4.0","eslint":"^7.31.0","eslint-config-bevry":"^3.27.0","eslint-config-prettier":"^8.3.0","eslint-plugin-prettier":"^3.4.0","kava":"^5.14.0","make-deno-edition":"^1.3.0","prettier":"^2.3.2","projectz":"^2.21.0","surge":"^0.23.0","typedoc":"^0.21.4","typescript":"4.3.5","valid-directory":"^3.7.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:deno && npm run our:compile:edition-es2019 && npm run our:compile:edition-es2019-esm && npm run our:compile:types","our:compile:deno":"make-deno-edition --attempt","our:compile:edition-es2019":"tsc --module commonjs --target ES2019 --outDir ./edition-es2019 --project tsconfig.json && ( test ! -d edition-es2019/source || ( mv edition-es2019/source edition-temp && rm -Rf edition-es2019 && mv edition-temp edition-es2019 ) ) && echo '{\"type\": \"commonjs\"}' > edition-es2019/package.json","our:compile:edition-es2019-esm":"tsc --module ESNext --target ES2019 --outDir ./edition-es2019-esm --project tsconfig.json && ( test ! -d edition-es2019-esm/source || ( mv edition-es2019-esm/source edition-temp && rm -Rf edition-es2019-esm && mv edition-temp edition-es2019-esm ) ) && echo '{\"type\": \"module\"}' > edition-es2019-esm/package.json","our:compile:types":"tsc --project tsconfig.json --emitDeclarationOnly --declaration --declarationMap --declarationDir ./compiled-types && ( test ! -d compiled-types/source || ( mv compiled-types/source edition-temp && rm -Rf compiled-types && mv edition-temp compiled-types ) )","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz","our:meta:contributors":"update-contributors","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --exclude '**/+(*test*|node_modules)' --excludeExternals --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier","our:verify:directory":"valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write .","test":"node ./edition-es2019/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"readmeFilename":"README.md","gitHead":"e7cd9844b817a1faac9c5e2e60030f98a528c92d","_id":"getmac@5.20.0-next.1627593726.e7cd9844b817a1faac9c5e2e60030f98a528c92d","_nodeVersion":"14.17.3","_npmVersion":"6.14.13","dist":{"shasum":"183e8644eb76cec770ff82f045c7c305b7ea6d00","size":9109,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-5.20.0-next.1627593726.e7cd9844b817a1faac9c5e2e60030f98a528c92d.tgz","integrity":"sha512-0czONbHRog7PiZhZyWheT54AnOnysn0LfDjoK5dK4IY/mF7gitIHMRKXNX3Fhpw0ZXMe/Fs/9AjsJ+f47mHsVg=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_5.20.0-next.1627593726.e7cd9844b817a1faac9c5e2e60030f98a528c92d_1627593728147_0.7318642362263326"},"_hasShrinkwrap":false,"publish_time":1627593728295,"_cnpm_publish_time":1627593728295,"_cnpmcore_publish_time":"2021-12-16T22:28:51.156Z"},"5.19.0-next.1627507674.b68c958a59ee43d82d16f749825c1b5e5d38091d":{"name":"getmac","version":"5.19.0-next.1627507674.b68c958a59ee43d82d16f749825c1b5e5d38091d","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["es2019","export-default","getmac","ifconfig","ipconfig","mac","mac-address","node","typed","types","typescript"],"badges":{"list":["githubworkflow","npmversion","npmdownloads","daviddm","daviddmdev","---","githubsponsors","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"githubWorkflow":"bevry","githubSponsorsUsername":"balupton","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","githubUsername":"bevry","githubRepository":"getmac","githubSlug":"bevry/getmac","npmPackageName":"getmac"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://github.com/balupton"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/Ogdentrod"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"Isaac Huang","url":"https://github.com/caasi"},{"name":"Jan Pilzer","url":"https://github.com/Hirse"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"zboszor","url":"https://github.com/zboszor"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=10"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["source","typescript","import"],"engines":false},{"description":"TypeScript compiled against ES2019 for Node.js 10 || 12 || 14 || 16 with Require for modules","directory":"edition-es2019","entry":"index.js","tags":["compiled","javascript","es2019","require"],"engines":{"node":"10 || 12 || 14 || 16","browsers":false}},{"description":"TypeScript compiled against ES2019 for Node.js 12 || 14 || 16 with Import for modules","directory":"edition-es2019-esm","entry":"index.js","tags":["compiled","javascript","es2019","import"],"engines":{"node":"12 || 14 || 16","browsers":false}}],"types":"./compiled-types/","type":"module","main":"edition-es2019/index.js","exports":{"node":{"import":"./edition-es2019-esm/index.js","require":"./edition-es2019/index.js"}},"dependencies":{"@types/node":"^16.4.6"},"devDependencies":{"@bevry/update-contributors":"^1.19.0","@typescript-eslint/eslint-plugin":"^4.28.5","@typescript-eslint/parser":"^4.28.5","assert-helpers":"^8.2.0","eslint":"^7.31.0","eslint-config-bevry":"^3.25.0","eslint-config-prettier":"^8.3.0","eslint-plugin-prettier":"^3.4.0","kava":"^5.14.0","make-deno-edition":"^1.3.0","prettier":"^2.3.2","projectz":"^2.18.0","surge":"^0.23.0","typedoc":"^0.21.4","typescript":"4.3.5","valid-directory":"^3.7.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:deno && npm run our:compile:edition-es2019 && npm run our:compile:edition-es2019-esm && npm run our:compile:types","our:compile:deno":"make-deno-edition --attempt","our:compile:edition-es2019":"tsc --module commonjs --target ES2019 --outDir ./edition-es2019 --project tsconfig.json && ( test ! -d edition-es2019/source || ( mv edition-es2019/source edition-temp && rm -Rf edition-es2019 && mv edition-temp edition-es2019 ) ) && echo '{\"type\": \"commonjs\"}' > edition-es2019/package.json","our:compile:edition-es2019-esm":"tsc --module ESNext --target ES2019 --outDir ./edition-es2019-esm --project tsconfig.json && ( test ! -d edition-es2019-esm/source || ( mv edition-es2019-esm/source edition-temp && rm -Rf edition-es2019-esm && mv edition-temp edition-es2019-esm ) ) && echo '{\"type\": \"module\"}' > edition-es2019-esm/package.json","our:compile:types":"tsc --project tsconfig.json --emitDeclarationOnly --declaration --declarationMap --declarationDir ./compiled-types && ( test ! -d compiled-types/source || ( mv compiled-types/source edition-temp && rm -Rf compiled-types && mv edition-temp compiled-types ) )","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz","our:meta:contributors":"update-contributors","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --exclude '**/+(*test*|node_modules)' --excludeExternals --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier","our:verify:directory":"valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write .","test":"node ./edition-es2019/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"readmeFilename":"README.md","gitHead":"b68c958a59ee43d82d16f749825c1b5e5d38091d","_id":"getmac@5.19.0-next.1627507674.b68c958a59ee43d82d16f749825c1b5e5d38091d","_nodeVersion":"14.17.3","_npmVersion":"6.14.13","dist":{"shasum":"95ce3545269f06a4d88bd3abd7ba3a4714cd1827","size":9104,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-5.19.0-next.1627507674.b68c958a59ee43d82d16f749825c1b5e5d38091d.tgz","integrity":"sha512-UE+ZG0UsWGJJozqFRpiFokPMSvs7+kVSDofla05yK3oYvuGGsjq3mV94FTzt0kU4SZ1nddn8KrntspHAtMD3eg=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_5.19.0-next.1627507674.b68c958a59ee43d82d16f749825c1b5e5d38091d_1627507675752_0.5362450828700227"},"_hasShrinkwrap":false,"publish_time":1627507676059,"_cnpm_publish_time":1627507676059,"_cnpmcore_publish_time":"2021-12-16T22:28:51.349Z"},"5.19.0":{"name":"getmac","version":"5.19.0","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["es2019","export-default","getmac","ifconfig","ipconfig","mac","mac-address","node","typed","types","typescript"],"badges":{"list":["githubworkflow","npmversion","npmdownloads","daviddm","daviddmdev","---","githubsponsors","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"githubWorkflow":"bevry","githubSponsorsUsername":"balupton","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","githubUsername":"bevry","githubRepository":"getmac","githubSlug":"bevry/getmac","npmPackageName":"getmac"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://github.com/balupton"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/Ogdentrod"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"Isaac Huang","url":"https://github.com/caasi"},{"name":"Jan Pilzer","url":"https://github.com/Hirse"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"zboszor","url":"https://github.com/zboszor"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=10"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["source","typescript","import"],"engines":false},{"description":"TypeScript compiled against ES2019 for Node.js 10 || 12 || 14 || 16 with Require for modules","directory":"edition-es2019","entry":"index.js","tags":["compiled","javascript","es2019","require"],"engines":{"node":"10 || 12 || 14 || 16","browsers":false}},{"description":"TypeScript compiled against ES2019 for Node.js 12 || 14 || 16 with Import for modules","directory":"edition-es2019-esm","entry":"index.js","tags":["compiled","javascript","es2019","import"],"engines":{"node":"12 || 14 || 16","browsers":false}}],"types":"./compiled-types/","type":"module","main":"edition-es2019/index.js","exports":{"node":{"import":"./edition-es2019-esm/index.js","require":"./edition-es2019/index.js"}},"dependencies":{"@types/node":"^16.4.6"},"devDependencies":{"@bevry/update-contributors":"^1.19.0","@typescript-eslint/eslint-plugin":"^4.28.5","@typescript-eslint/parser":"^4.28.5","assert-helpers":"^8.2.0","eslint":"^7.31.0","eslint-config-bevry":"^3.25.0","eslint-config-prettier":"^8.3.0","eslint-plugin-prettier":"^3.4.0","kava":"^5.14.0","make-deno-edition":"^1.3.0","prettier":"^2.3.2","projectz":"^2.18.0","surge":"^0.23.0","typedoc":"^0.21.4","typescript":"4.3.5","valid-directory":"^3.7.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:deno && npm run our:compile:edition-es2019 && npm run our:compile:edition-es2019-esm && npm run our:compile:types","our:compile:deno":"make-deno-edition --attempt","our:compile:edition-es2019":"tsc --module commonjs --target ES2019 --outDir ./edition-es2019 --project tsconfig.json && ( test ! -d edition-es2019/source || ( mv edition-es2019/source edition-temp && rm -Rf edition-es2019 && mv edition-temp edition-es2019 ) ) && echo '{\"type\": \"commonjs\"}' > edition-es2019/package.json","our:compile:edition-es2019-esm":"tsc --module ESNext --target ES2019 --outDir ./edition-es2019-esm --project tsconfig.json && ( test ! -d edition-es2019-esm/source || ( mv edition-es2019-esm/source edition-temp && rm -Rf edition-es2019-esm && mv edition-temp edition-es2019-esm ) ) && echo '{\"type\": \"module\"}' > edition-es2019-esm/package.json","our:compile:types":"tsc --project tsconfig.json --emitDeclarationOnly --declaration --declarationMap --declarationDir ./compiled-types && ( test ! -d compiled-types/source || ( mv compiled-types/source edition-temp && rm -Rf compiled-types && mv edition-temp compiled-types ) )","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz","our:meta:contributors":"update-contributors","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --exclude '**/+(*test*|node_modules)' --excludeExternals --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier","our:verify:directory":"valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write .","test":"node ./edition-es2019/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"gitHead":"b68c958a59ee43d82d16f749825c1b5e5d38091d","_id":"getmac@5.19.0","_nodeVersion":"14.17.3","_npmVersion":"6.14.13","dist":{"shasum":"f6bd635d9d1c9d1e04904fe088d01b1d78d97a4f","size":9053,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-5.19.0.tgz","integrity":"sha512-9QRu87buiAEXKS2Um/THFyNUQfzOG/t5bvM+Mb61AxGRk/8KbWqzw0fJ32H7YCzo0eHcE/OI0IluJfTSFTgbKA=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_5.19.0_1627507520260_0.708265588997997"},"_hasShrinkwrap":false,"publish_time":1627507520382,"_cnpm_publish_time":1627507520382,"_cnpmcore_publish_time":"2021-12-16T22:28:51.548Z"},"5.18.0-next.1627424106.2303dc0736b300ffbb54d311cd38780d3536c491":{"name":"getmac","version":"5.18.0-next.1627424106.2303dc0736b300ffbb54d311cd38780d3536c491","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["es2019","export-default","getmac","ifconfig","ipconfig","mac","mac-address","node","typed","types","typescript"],"badges":{"list":["githubworkflow","npmversion","npmdownloads","daviddm","daviddmdev","---","githubsponsors","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"githubWorkflow":"bevry","githubSponsorsUsername":"balupton","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","githubUsername":"bevry","githubRepository":"getmac","githubSlug":"bevry/getmac","npmPackageName":"getmac"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://github.com/balupton"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/Ogdentrod"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"Isaac Huang","url":"https://github.com/caasi"},{"name":"Jan Pilzer","url":"https://github.com/Hirse"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"zboszor","url":"https://github.com/zboszor"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=10"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["source","typescript","import"],"engines":false},{"description":"TypeScript compiled against ES2019 for Node.js 10 || 12 || 14 with Require for modules","directory":"edition-es2019","entry":"index.js","tags":["compiled","javascript","es2019","require"],"engines":{"node":"10 || 12 || 14","browsers":false}},{"description":"TypeScript compiled against ES2019 for Node.js 12 || 14 with Import for modules","directory":"edition-es2019-esm","entry":"index.js","tags":["compiled","javascript","es2019","import"],"engines":{"node":"12 || 14","browsers":false}}],"types":"./compiled-types/","type":"module","main":"edition-es2019/index.js","exports":{"node":{"import":"./edition-es2019-esm/index.js","require":"./edition-es2019/index.js"}},"dependencies":{"@types/node":"^16.4.3"},"devDependencies":{"@bevry/update-contributors":"^1.18.0","@typescript-eslint/eslint-plugin":"^4.28.5","@typescript-eslint/parser":"^4.28.5","assert-helpers":"^8.2.0","eslint":"^7.31.0","eslint-config-bevry":"^3.23.0","eslint-config-prettier":"^8.3.0","eslint-plugin-prettier":"^3.4.0","kava":"^5.13.0","make-deno-edition":"^1.3.0","prettier":"^2.3.2","projectz":"^2.18.0","surge":"^0.23.0","typedoc":"^0.21.4","typescript":"4.3.5","valid-directory":"^3.7.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:deno && npm run our:compile:edition-es2019 && npm run our:compile:edition-es2019-esm && npm run our:compile:types","our:compile:deno":"make-deno-edition --attempt","our:compile:edition-es2019":"tsc --module commonjs --target ES2019 --outDir ./edition-es2019 --project tsconfig.json && ( test ! -d edition-es2019/source || ( mv edition-es2019/source edition-temp && rm -Rf edition-es2019 && mv edition-temp edition-es2019 ) ) && echo '{\"type\": \"commonjs\"}' > edition-es2019/package.json","our:compile:edition-es2019-esm":"tsc --module ESNext --target ES2019 --outDir ./edition-es2019-esm --project tsconfig.json && ( test ! -d edition-es2019-esm/source || ( mv edition-es2019-esm/source edition-temp && rm -Rf edition-es2019-esm && mv edition-temp edition-es2019-esm ) ) && echo '{\"type\": \"module\"}' > edition-es2019-esm/package.json","our:compile:types":"tsc --project tsconfig.json --emitDeclarationOnly --declaration --declarationMap --declarationDir ./compiled-types && ( test ! -d compiled-types/source || ( mv compiled-types/source edition-temp && rm -Rf compiled-types && mv edition-temp compiled-types ) )","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz","our:meta:contributors":"update-contributors","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --exclude '**/+(*test*|node_modules)' --excludeExternals --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier","our:verify:directory":"valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write .","test":"node ./edition-es2019/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"readmeFilename":"README.md","gitHead":"2303dc0736b300ffbb54d311cd38780d3536c491","_id":"getmac@5.18.0-next.1627424106.2303dc0736b300ffbb54d311cd38780d3536c491","_nodeVersion":"14.17.3","_npmVersion":"6.14.13","dist":{"shasum":"0647b6481c3266a4e984c405068280287884c727","size":9092,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-5.18.0-next.1627424106.2303dc0736b300ffbb54d311cd38780d3536c491.tgz","integrity":"sha512-Ur72ylhk4yNTkiWqLP6oYgNdjwunHbVohHSkQ6Mt4lxLEJ1NEGaH5uJdPqTHrtdr7aoV23lYZhwATTIUQ9KbAA=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_5.18.0-next.1627424106.2303dc0736b300ffbb54d311cd38780d3536c491_1627424108082_0.25971965868103064"},"_hasShrinkwrap":false,"publish_time":1627424108252,"_cnpm_publish_time":1627424108252,"_cnpmcore_publish_time":"2021-12-16T22:28:51.777Z"},"5.18.0":{"name":"getmac","version":"5.18.0","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["es2019","export-default","getmac","ifconfig","ipconfig","mac","mac-address","node","typed","types","typescript"],"badges":{"list":["githubworkflow","npmversion","npmdownloads","daviddm","daviddmdev","---","githubsponsors","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"githubWorkflow":"bevry","githubSponsorsUsername":"balupton","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","githubUsername":"bevry","githubRepository":"getmac","githubSlug":"bevry/getmac","npmPackageName":"getmac"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://github.com/balupton"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/Ogdentrod"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"Isaac Huang","url":"https://github.com/caasi"},{"name":"Jan Pilzer","url":"https://github.com/Hirse"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"zboszor","url":"https://github.com/zboszor"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=10"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["source","typescript","import"],"engines":false},{"description":"TypeScript compiled against ES2019 for Node.js 10 || 12 || 14 with Require for modules","directory":"edition-es2019","entry":"index.js","tags":["compiled","javascript","es2019","require"],"engines":{"node":"10 || 12 || 14","browsers":false}},{"description":"TypeScript compiled against ES2019 for Node.js 12 || 14 with Import for modules","directory":"edition-es2019-esm","entry":"index.js","tags":["compiled","javascript","es2019","import"],"engines":{"node":"12 || 14","browsers":false}}],"types":"./compiled-types/","type":"module","main":"edition-es2019/index.js","exports":{"node":{"import":"./edition-es2019-esm/index.js","require":"./edition-es2019/index.js"}},"dependencies":{"@types/node":"^16.4.3"},"devDependencies":{"@bevry/update-contributors":"^1.18.0","@typescript-eslint/eslint-plugin":"^4.28.5","@typescript-eslint/parser":"^4.28.5","assert-helpers":"^8.2.0","eslint":"^7.31.0","eslint-config-bevry":"^3.23.0","eslint-config-prettier":"^8.3.0","eslint-plugin-prettier":"^3.4.0","kava":"^5.13.0","make-deno-edition":"^1.3.0","prettier":"^2.3.2","projectz":"^2.18.0","surge":"^0.23.0","typedoc":"^0.21.4","typescript":"4.3.5","valid-directory":"^3.7.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:deno && npm run our:compile:edition-es2019 && npm run our:compile:edition-es2019-esm && npm run our:compile:types","our:compile:deno":"make-deno-edition --attempt","our:compile:edition-es2019":"tsc --module commonjs --target ES2019 --outDir ./edition-es2019 --project tsconfig.json && ( test ! -d edition-es2019/source || ( mv edition-es2019/source edition-temp && rm -Rf edition-es2019 && mv edition-temp edition-es2019 ) ) && echo '{\"type\": \"commonjs\"}' > edition-es2019/package.json","our:compile:edition-es2019-esm":"tsc --module ESNext --target ES2019 --outDir ./edition-es2019-esm --project tsconfig.json && ( test ! -d edition-es2019-esm/source || ( mv edition-es2019-esm/source edition-temp && rm -Rf edition-es2019-esm && mv edition-temp edition-es2019-esm ) ) && echo '{\"type\": \"module\"}' > edition-es2019-esm/package.json","our:compile:types":"tsc --project tsconfig.json --emitDeclarationOnly --declaration --declarationMap --declarationDir ./compiled-types && ( test ! -d compiled-types/source || ( mv compiled-types/source edition-temp && rm -Rf compiled-types && mv edition-temp compiled-types ) )","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz","our:meta:contributors":"update-contributors","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --exclude '**/+(*test*|node_modules)' --excludeExternals --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier","our:verify:directory":"valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write .","test":"node ./edition-es2019/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"gitHead":"2303dc0736b300ffbb54d311cd38780d3536c491","_id":"getmac@5.18.0","_nodeVersion":"14.17.3","_npmVersion":"6.14.13","dist":{"shasum":"b3288681ba33e36b97b0cad414b6765fd1b3758e","size":9038,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-5.18.0.tgz","integrity":"sha512-ITR6SjfN6I294Pgx0FEv59RpFVyZqheKeD0I/O+Fp2Y3MfR2A2GynxKHQ6e+IzV2POqt3/4F9K5esB4ZI710fQ=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_5.18.0_1627423959451_0.8369885336562257"},"_hasShrinkwrap":false,"publish_time":1627423959693,"_cnpm_publish_time":1627423959693,"_cnpmcore_publish_time":"2021-12-16T22:28:52.017Z"},"5.17.0-next.1604234715.e4fe15d9793c65ef135dcda1328fa90b1f4e43fd":{"name":"getmac","version":"5.17.0-next.1604234715.e4fe15d9793c65ef135dcda1328fa90b1f4e43fd","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["deno","deno-edition","deno-entry","denoland","esnext","export-default","getmac","ifconfig","ipconfig","mac","mac-address","node","typed","types","typescript"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","githubsponsors","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"githubSponsorsUsername":"balupton","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com","githubUsername":"bevry","githubRepository":"getmac","githubSlug":"bevry/getmac","npmPackageName":"getmac"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://github.com/balupton"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/Ogdentrod"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"Isaac Huang","url":"https://github.com/caasi"},{"name":"Jan Pilzer","url":"https://github.com/Hirse"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"zboszor","url":"https://github.com/zboszor"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=10"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["source","typescript","import"],"engines":false},{"description":"TypeScript compiled against ESNext for Node.js 10 || 12 || 14 || 15 with Require for modules","directory":"edition-esnext","entry":"index.js","tags":["compiled","javascript","esnext","require"],"engines":{"node":"10 || 12 || 14 || 15","browsers":false}},{"description":"TypeScript compiled against ESNext for Node.js 12 || 14 || 15 with Import for modules","directory":"edition-esnext-esm","entry":"index.js","tags":["compiled","javascript","esnext","import"],"engines":{"node":"12 || 14 || 15","browsers":false}},{"description":"TypeScript source code made to be compatible with Deno","directory":"edition-deno","entry":"index.ts","tags":["typescript","import","deno"],"engines":{"deno":true,"browsers":false}}],"types":"./compiled-types/","type":"module","main":"edition-esnext/index.js","exports":{"node":{"import":"./edition-esnext-esm/index.js","require":"./edition-esnext/index.js"}},"dependencies":{"@types/node":"^14.14.6"},"devDependencies":{"@bevry/update-contributors":"^1.17.0","@typescript-eslint/eslint-plugin":"^4.6.0","@typescript-eslint/parser":"^4.6.0","assert-helpers":"^8.1.0","eslint":"^7.12.1","eslint-config-bevry":"^3.23.0","eslint-config-prettier":"^6.15.0","eslint-plugin-prettier":"^3.1.4","kava":"^5.12.0","make-deno-edition":"^1.2.0","prettier":"^2.1.2","projectz":"^2.16.0","surge":"^0.21.6","typedoc":"^0.19.2","typescript":"^4.0.5","valid-directory":"^3.4.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:deno && npm run our:compile:edition-esnext && npm run our:compile:edition-esnext-esm && npm run our:compile:types","our:compile:deno":"make-deno-edition --attempt","our:compile:edition-esnext":"tsc --module commonjs --target ESNext --outDir ./edition-esnext --project tsconfig.json && ( test ! -d edition-esnext/source || ( mv edition-esnext/source edition-temp && rm -Rf edition-esnext && mv edition-temp edition-esnext ) ) && echo '{\"type\": \"commonjs\"}' > edition-esnext/package.json","our:compile:edition-esnext-esm":"tsc --module ESNext --target ESNext --outDir ./edition-esnext-esm --project tsconfig.json && ( test ! -d edition-esnext-esm/source || ( mv edition-esnext-esm/source edition-temp && rm -Rf edition-esnext-esm && mv edition-temp edition-esnext-esm ) ) && echo '{\"type\": \"module\"}' > edition-esnext-esm/package.json","our:compile:types":"tsc --project tsconfig.json --emitDeclarationOnly --declaration --declarationMap --declarationDir ./compiled-types && ( test ! -d compiled-types/source || ( mv compiled-types/source edition-temp && rm -Rf compiled-types && mv edition-temp compiled-types ) )","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz","our:meta:contributors":"update-contributors","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier","our:verify:directory":"valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write .","test":"node ./edition-esnext/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"deno":"edition-deno/index.ts","gitHead":"e4fe15d9793c65ef135dcda1328fa90b1f4e43fd","readmeFilename":"README.md","_id":"getmac@5.17.0-next.1604234715.e4fe15d9793c65ef135dcda1328fa90b1f4e43fd","_nodeVersion":"14.15.0","_npmVersion":"6.14.8","dist":{"shasum":"82718ab16f10456b261cdb1487f940ae3dada1f1","size":9408,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-5.17.0-next.1604234715.e4fe15d9793c65ef135dcda1328fa90b1f4e43fd.tgz","integrity":"sha512-ZhtHe/UxuT3000Zl0jbPK2/sEpEJUYQdbXgbOqtutR/Rruo2WLdYoL+orFKNp4TrH+YexNA8MbomIaNIs5Z0NQ=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_5.17.0-next.1604234715.e4fe15d9793c65ef135dcda1328fa90b1f4e43fd_1604234716467_0.08559940812974709"},"_hasShrinkwrap":false,"publish_time":1604234716634,"_cnpm_publish_time":1604234716634,"_cnpmcore_publish_time":"2021-12-16T22:28:52.242Z"},"5.17.0":{"name":"getmac","version":"5.17.0","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["deno","deno-edition","deno-entry","denoland","esnext","export-default","getmac","ifconfig","ipconfig","mac","mac-address","node","typed","types","typescript"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","githubsponsors","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"githubSponsorsUsername":"balupton","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com","githubUsername":"bevry","githubRepository":"getmac","githubSlug":"bevry/getmac","npmPackageName":"getmac"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://github.com/balupton"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/Ogdentrod"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"Isaac Huang","url":"https://github.com/caasi"},{"name":"Jan Pilzer","url":"https://github.com/Hirse"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"zboszor","url":"https://github.com/zboszor"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=10"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["source","typescript","import"],"engines":false},{"description":"TypeScript compiled against ESNext for Node.js 10 || 12 || 14 || 15 with Require for modules","directory":"edition-esnext","entry":"index.js","tags":["compiled","javascript","esnext","require"],"engines":{"node":"10 || 12 || 14 || 15","browsers":false}},{"description":"TypeScript compiled against ESNext for Node.js 12 || 14 || 15 with Import for modules","directory":"edition-esnext-esm","entry":"index.js","tags":["compiled","javascript","esnext","import"],"engines":{"node":"12 || 14 || 15","browsers":false}},{"description":"TypeScript source code made to be compatible with Deno","directory":"edition-deno","entry":"index.ts","tags":["typescript","import","deno"],"engines":{"deno":true,"browsers":false}}],"types":"./compiled-types/","type":"module","main":"edition-esnext/index.js","exports":{"node":{"import":"./edition-esnext-esm/index.js","require":"./edition-esnext/index.js"}},"dependencies":{"@types/node":"^14.14.6"},"devDependencies":{"@bevry/update-contributors":"^1.17.0","@typescript-eslint/eslint-plugin":"^4.6.0","@typescript-eslint/parser":"^4.6.0","assert-helpers":"^8.1.0","eslint":"^7.12.1","eslint-config-bevry":"^3.23.0","eslint-config-prettier":"^6.15.0","eslint-plugin-prettier":"^3.1.4","kava":"^5.12.0","make-deno-edition":"^1.2.0","prettier":"^2.1.2","projectz":"^2.16.0","surge":"^0.21.6","typedoc":"^0.19.2","typescript":"^4.0.5","valid-directory":"^3.4.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:deno && npm run our:compile:edition-esnext && npm run our:compile:edition-esnext-esm && npm run our:compile:types","our:compile:deno":"make-deno-edition --attempt","our:compile:edition-esnext":"tsc --module commonjs --target ESNext --outDir ./edition-esnext --project tsconfig.json && ( test ! -d edition-esnext/source || ( mv edition-esnext/source edition-temp && rm -Rf edition-esnext && mv edition-temp edition-esnext ) ) && echo '{\"type\": \"commonjs\"}' > edition-esnext/package.json","our:compile:edition-esnext-esm":"tsc --module ESNext --target ESNext --outDir ./edition-esnext-esm --project tsconfig.json && ( test ! -d edition-esnext-esm/source || ( mv edition-esnext-esm/source edition-temp && rm -Rf edition-esnext-esm && mv edition-temp edition-esnext-esm ) ) && echo '{\"type\": \"module\"}' > edition-esnext-esm/package.json","our:compile:types":"tsc --project tsconfig.json --emitDeclarationOnly --declaration --declarationMap --declarationDir ./compiled-types && ( test ! -d compiled-types/source || ( mv compiled-types/source edition-temp && rm -Rf compiled-types && mv edition-temp compiled-types ) )","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz","our:meta:contributors":"update-contributors","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier","our:verify:directory":"valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write .","test":"node ./edition-esnext/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"deno":"edition-deno/index.ts","gitHead":"3eb161f416c92287531791aee9ac0a9cd0bb4e9a","_id":"getmac@5.17.0","_nodeVersion":"14.15.0","_npmVersion":"6.14.8","dist":{"shasum":"046140a2e30e8b8f56486a1353fcae1950ac7c28","size":9359,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-5.17.0.tgz","integrity":"sha512-hupD+ZCHVFRaH1wBDPgIil6KWL5p5Z6kG71nAcafwq72QaMxw9bhR2LPBk3jlw3I2F3oELNkx6Fccwiuy5fv0w=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_5.17.0_1603936433760_0.977560100541981"},"_hasShrinkwrap":false,"publish_time":1603936433895,"_cnpm_publish_time":1603936433895,"_cnpmcore_publish_time":"2021-12-16T22:28:52.485Z"},"5.17.0-next.1603936406.3eb161f416c92287531791aee9ac0a9cd0bb4e9a":{"name":"getmac","version":"5.17.0-next.1603936406.3eb161f416c92287531791aee9ac0a9cd0bb4e9a","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["deno","deno-edition","deno-entry","denoland","esnext","export-default","getmac","ifconfig","ipconfig","mac","mac-address","node","typed","types","typescript"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","githubsponsors","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"githubSponsorsUsername":"balupton","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com","githubUsername":"bevry","githubRepository":"getmac","githubSlug":"bevry/getmac","npmPackageName":"getmac"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://github.com/balupton"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/Ogdentrod"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"Isaac Huang","url":"https://github.com/caasi"},{"name":"Jan Pilzer","url":"https://github.com/Hirse"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"zboszor","url":"https://github.com/zboszor"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=10"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["source","typescript","import"],"engines":false},{"description":"TypeScript compiled against ESNext for Node.js 10 || 12 || 14 || 15 with Require for modules","directory":"edition-esnext","entry":"index.js","tags":["compiled","javascript","esnext","require"],"engines":{"node":"10 || 12 || 14 || 15","browsers":false}},{"description":"TypeScript compiled against ESNext for Node.js 12 || 14 || 15 with Import for modules","directory":"edition-esnext-esm","entry":"index.js","tags":["compiled","javascript","esnext","import"],"engines":{"node":"12 || 14 || 15","browsers":false}},{"description":"TypeScript source code made to be compatible with Deno","directory":"edition-deno","entry":"index.ts","tags":["typescript","import","deno"],"engines":{"deno":true,"browsers":false}}],"types":"./compiled-types/","type":"module","main":"edition-esnext/index.js","exports":{"node":{"import":"./edition-esnext-esm/index.js","require":"./edition-esnext/index.js"}},"dependencies":{"@types/node":"^14.14.6"},"devDependencies":{"@bevry/update-contributors":"^1.17.0","@typescript-eslint/eslint-plugin":"^4.6.0","@typescript-eslint/parser":"^4.6.0","assert-helpers":"^8.1.0","eslint":"^7.12.1","eslint-config-bevry":"^3.23.0","eslint-config-prettier":"^6.15.0","eslint-plugin-prettier":"^3.1.4","kava":"^5.12.0","make-deno-edition":"^1.2.0","prettier":"^2.1.2","projectz":"^2.16.0","surge":"^0.21.6","typedoc":"^0.19.2","typescript":"^4.0.5","valid-directory":"^3.4.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:deno && npm run our:compile:edition-esnext && npm run our:compile:edition-esnext-esm && npm run our:compile:types","our:compile:deno":"make-deno-edition --attempt","our:compile:edition-esnext":"tsc --module commonjs --target ESNext --outDir ./edition-esnext --project tsconfig.json && ( test ! -d edition-esnext/source || ( mv edition-esnext/source edition-temp && rm -Rf edition-esnext && mv edition-temp edition-esnext ) ) && echo '{\"type\": \"commonjs\"}' > edition-esnext/package.json","our:compile:edition-esnext-esm":"tsc --module ESNext --target ESNext --outDir ./edition-esnext-esm --project tsconfig.json && ( test ! -d edition-esnext-esm/source || ( mv edition-esnext-esm/source edition-temp && rm -Rf edition-esnext-esm && mv edition-temp edition-esnext-esm ) ) && echo '{\"type\": \"module\"}' > edition-esnext-esm/package.json","our:compile:types":"tsc --project tsconfig.json --emitDeclarationOnly --declaration --declarationMap --declarationDir ./compiled-types && ( test ! -d compiled-types/source || ( mv compiled-types/source edition-temp && rm -Rf compiled-types && mv edition-temp compiled-types ) )","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz","our:meta:contributors":"update-contributors","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier","our:verify:directory":"valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write .","test":"node ./edition-esnext/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"deno":"edition-deno/index.ts","gitHead":"3eb161f416c92287531791aee9ac0a9cd0bb4e9a","readmeFilename":"README.md","_id":"getmac@5.17.0-next.1603936406.3eb161f416c92287531791aee9ac0a9cd0bb4e9a","_nodeVersion":"14.15.0","_npmVersion":"6.14.8","dist":{"shasum":"e7f589226f0c6a574d3bb441738ba45d92fb0933","size":9409,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-5.17.0-next.1603936406.3eb161f416c92287531791aee9ac0a9cd0bb4e9a.tgz","integrity":"sha512-Q8aqlta7uH7rRv8jPe3nFTbYEHdtJshv6D2xDyoWtSRYKuQIFesX2cixQajliqsQBGon0ibZV3qXcHMkPchjZw=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_5.17.0-next.1603936406.3eb161f416c92287531791aee9ac0a9cd0bb4e9a_1603936407757_0.06192493916496056"},"_hasShrinkwrap":false,"publish_time":1603936407871,"_cnpm_publish_time":1603936407871,"_cnpmcore_publish_time":"2021-12-16T22:28:52.765Z"},"5.16.0-next.1603623713.862b91f9af3e664d02f0dc135bd7d1149a2714db":{"name":"getmac","version":"5.16.0-next.1603623713.862b91f9af3e664d02f0dc135bd7d1149a2714db","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["deno","deno-edition","deno-entry","denoland","esnext","export-default","getmac","ifconfig","ipconfig","mac","mac-address","node","typed","types","typescript"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","githubsponsors","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"githubSponsorsUsername":"balupton","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com","githubUsername":"bevry","githubRepository":"getmac","githubSlug":"bevry/getmac","npmPackageName":"getmac"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://github.com/balupton"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/Ogdentrod"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"Isaac Huang","url":"https://github.com/caasi"},{"name":"Jan Pilzer","url":"https://github.com/Hirse"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"zboszor","url":"https://github.com/zboszor"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=10"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["source","typescript","import"],"engines":false},{"description":"TypeScript compiled against ESNext for Node.js 10 || 12 || 13 || 14 with Require for modules","directory":"edition-esnext","entry":"index.js","tags":["compiled","javascript","esnext","require"],"engines":{"node":"10 || 12 || 13 || 14","browsers":false}},{"description":"TypeScript compiled against ESNext for Node.js 12 || 13 || 14 with Import for modules","directory":"edition-esnext-esm","entry":"index.js","tags":["compiled","javascript","esnext","import"],"engines":{"node":"12 || 13 || 14","browsers":false}},{"description":"TypeScript source code made to be compatible with Deno","directory":"edition-deno","entry":"index.ts","tags":["typescript","import","deno"],"engines":{"deno":true,"browsers":false}}],"types":"./compiled-types/","type":"module","main":"edition-esnext/index.js","exports":{"node":{"import":"./edition-esnext-esm/index.js","require":"./edition-esnext/index.js"}},"dependencies":{"@types/node":"^14.6.4"},"devDependencies":{"@bevry/update-contributors":"^1.16.0","@typescript-eslint/eslint-plugin":"^4.0.1","@typescript-eslint/parser":"^4.0.1","assert-helpers":"^7.2.0","eslint":"^7.8.1","eslint-config-bevry":"^3.22.0","eslint-config-prettier":"^6.11.0","eslint-plugin-prettier":"^3.1.4","kava":"^5.11.0","make-deno-edition":"^1.1.1","prettier":"^2.1.1","projectz":"^2.15.0","surge":"^0.21.6","typedoc":"^0.19.0","typescript":"^4.0.2","valid-directory":"^3.3.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:deno && npm run our:compile:edition-esnext && npm run our:compile:edition-esnext-esm && npm run our:compile:types","our:compile:deno":"make-deno-edition --attempt","our:compile:edition-esnext":"tsc --module commonjs --target ESNext --outDir ./edition-esnext --project tsconfig.json && ( test ! -d edition-esnext/source || ( mv edition-esnext/source edition-temp && rm -Rf edition-esnext && mv edition-temp edition-esnext ) ) && echo '{\"type\": \"commonjs\"}' > edition-esnext/package.json","our:compile:edition-esnext-esm":"tsc --module ESNext --target ESNext --outDir ./edition-esnext-esm --project tsconfig.json && ( test ! -d edition-esnext-esm/source || ( mv edition-esnext-esm/source edition-temp && rm -Rf edition-esnext-esm && mv edition-temp edition-esnext-esm ) ) && echo '{\"type\": \"module\"}' > edition-esnext-esm/package.json","our:compile:types":"tsc --project tsconfig.json --emitDeclarationOnly --declaration --declarationMap --declarationDir ./compiled-types && ( test ! -d compiled-types/source || ( mv compiled-types/source edition-temp && rm -Rf compiled-types && mv edition-temp compiled-types ) )","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz","our:meta:contributors":"update-contributors","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier","our:verify:directory":"valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write .","test":"node ./edition-esnext/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"deno":"edition-deno/index.ts","gitHead":"862b91f9af3e664d02f0dc135bd7d1149a2714db","readmeFilename":"README.md","_id":"getmac@5.16.0-next.1603623713.862b91f9af3e664d02f0dc135bd7d1149a2714db","_nodeVersion":"14.14.0","_npmVersion":"6.14.8","dist":{"shasum":"d5b5710ecf165350bd70548fbdcb7b2aa8504a67","size":9392,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-5.16.0-next.1603623713.862b91f9af3e664d02f0dc135bd7d1149a2714db.tgz","integrity":"sha512-TM2cnRArC8bhqw2bwpzWUMTasZHp6PxyMN/8Le9HZx9Fq0Jy2EVKnRmMXfLNEQxgNNPGSt5AzX7Vel5fDJj3TQ=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_5.16.0-next.1603623713.862b91f9af3e664d02f0dc135bd7d1149a2714db_1603623714546_0.7552521597867687"},"_hasShrinkwrap":false,"publish_time":1603623714683,"_cnpm_publish_time":1603623714683,"_cnpmcore_publish_time":"2021-12-16T22:28:53.001Z"},"5.16.0-next.1603015694.4cae44e0b3ad331280c5fa787f6c0c68806c75da":{"name":"getmac","version":"5.16.0-next.1603015694.4cae44e0b3ad331280c5fa787f6c0c68806c75da","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["deno","deno-edition","deno-entry","denoland","esnext","export-default","getmac","ifconfig","ipconfig","mac","mac-address","node","typed","types","typescript"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","githubsponsors","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"githubSponsorsUsername":"balupton","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com","githubUsername":"bevry","githubRepository":"getmac","githubSlug":"bevry/getmac","npmPackageName":"getmac"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://github.com/balupton"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/Ogdentrod"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"Isaac Huang","url":"https://github.com/caasi"},{"name":"Jan Pilzer","url":"https://github.com/Hirse"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"zboszor","url":"https://github.com/zboszor"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=10"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["source","typescript","import"],"engines":false},{"description":"TypeScript compiled against ESNext for Node.js 10 || 12 || 13 || 14 with Require for modules","directory":"edition-esnext","entry":"index.js","tags":["compiled","javascript","esnext","require"],"engines":{"node":"10 || 12 || 13 || 14","browsers":false}},{"description":"TypeScript compiled against ESNext for Node.js 12 || 13 || 14 with Import for modules","directory":"edition-esnext-esm","entry":"index.js","tags":["compiled","javascript","esnext","import"],"engines":{"node":"12 || 13 || 14","browsers":false}},{"description":"TypeScript source code made to be compatible with Deno","directory":"edition-deno","entry":"index.ts","tags":["typescript","import","deno"],"engines":{"deno":true,"browsers":false}}],"types":"./compiled-types/","type":"module","main":"edition-esnext/index.js","exports":{"node":{"import":"./edition-esnext-esm/index.js","require":"./edition-esnext/index.js"}},"dependencies":{"@types/node":"^14.6.4"},"devDependencies":{"@bevry/update-contributors":"^1.16.0","@typescript-eslint/eslint-plugin":"^4.0.1","@typescript-eslint/parser":"^4.0.1","assert-helpers":"^7.2.0","eslint":"^7.8.1","eslint-config-bevry":"^3.22.0","eslint-config-prettier":"^6.11.0","eslint-plugin-prettier":"^3.1.4","kava":"^5.11.0","make-deno-edition":"^1.1.1","prettier":"^2.1.1","projectz":"^2.15.0","surge":"^0.21.6","typedoc":"^0.19.0","typescript":"^4.0.2","valid-directory":"^3.3.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:deno && npm run our:compile:edition-esnext && npm run our:compile:edition-esnext-esm && npm run our:compile:types","our:compile:deno":"make-deno-edition --attempt","our:compile:edition-esnext":"tsc --module commonjs --target ESNext --outDir ./edition-esnext --project tsconfig.json && ( test ! -d edition-esnext/source || ( mv edition-esnext/source edition-temp && rm -Rf edition-esnext && mv edition-temp edition-esnext ) ) && echo '{\"type\": \"commonjs\"}' > edition-esnext/package.json","our:compile:edition-esnext-esm":"tsc --module ESNext --target ESNext --outDir ./edition-esnext-esm --project tsconfig.json && ( test ! -d edition-esnext-esm/source || ( mv edition-esnext-esm/source edition-temp && rm -Rf edition-esnext-esm && mv edition-temp edition-esnext-esm ) ) && echo '{\"type\": \"module\"}' > edition-esnext-esm/package.json","our:compile:types":"tsc --project tsconfig.json --emitDeclarationOnly --declaration --declarationMap --declarationDir ./compiled-types && ( test ! -d compiled-types/source || ( mv compiled-types/source edition-temp && rm -Rf compiled-types && mv edition-temp compiled-types ) )","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz","our:meta:contributors":"update-contributors","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier","our:verify:directory":"valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write .","test":"node ./edition-esnext/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"deno":"edition-deno/index.ts","gitHead":"4cae44e0b3ad331280c5fa787f6c0c68806c75da","readmeFilename":"README.md","_id":"getmac@5.16.0-next.1603015694.4cae44e0b3ad331280c5fa787f6c0c68806c75da","_nodeVersion":"14.14.0","_npmVersion":"6.14.8","dist":{"shasum":"f4fa35e26b8dc05c92c494b9a34303381018c878","size":9393,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-5.16.0-next.1603015694.4cae44e0b3ad331280c5fa787f6c0c68806c75da.tgz","integrity":"sha512-uXUVFX+PEWpmh3c1O0fegwMnlUGOEtsmLwNiCkr8pTFt9bwXsbw21cUv2AKdcrNCcEu+CV/bMUJeyclY4bc/1g=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_5.16.0-next.1603015694.4cae44e0b3ad331280c5fa787f6c0c68806c75da_1603015696181_0.016925329937244715"},"_hasShrinkwrap":false,"publish_time":1603015696395,"_cnpm_publish_time":1603015696395,"_cnpmcore_publish_time":"2021-12-16T22:28:53.190Z"},"5.16.0-next.1602413203.50b347d69236a994a50492aad07968c0c834108f":{"name":"getmac","version":"5.16.0-next.1602413203.50b347d69236a994a50492aad07968c0c834108f","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["deno","deno-edition","deno-entry","denoland","esnext","export-default","getmac","ifconfig","ipconfig","mac","mac-address","node","typed","types","typescript"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","githubsponsors","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"githubSponsorsUsername":"balupton","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com","githubUsername":"bevry","githubRepository":"getmac","githubSlug":"bevry/getmac","npmPackageName":"getmac"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://github.com/balupton"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/Ogdentrod"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"Isaac Huang","url":"https://github.com/caasi"},{"name":"Jan Pilzer","url":"https://github.com/Hirse"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"zboszor","url":"https://github.com/zboszor"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=10"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["source","typescript","import"],"engines":false},{"description":"TypeScript compiled against ESNext for Node.js 10 || 12 || 13 || 14 with Require for modules","directory":"edition-esnext","entry":"index.js","tags":["compiled","javascript","esnext","require"],"engines":{"node":"10 || 12 || 13 || 14","browsers":false}},{"description":"TypeScript compiled against ESNext for Node.js 12 || 13 || 14 with Import for modules","directory":"edition-esnext-esm","entry":"index.js","tags":["compiled","javascript","esnext","import"],"engines":{"node":"12 || 13 || 14","browsers":false}},{"description":"TypeScript source code made to be compatible with Deno","directory":"edition-deno","entry":"index.ts","tags":["typescript","import","deno"],"engines":{"deno":true,"browsers":false}}],"types":"./compiled-types/","type":"module","main":"edition-esnext/index.js","exports":{"node":{"import":"./edition-esnext-esm/index.js","require":"./edition-esnext/index.js"}},"dependencies":{"@types/node":"^14.6.4"},"devDependencies":{"@bevry/update-contributors":"^1.16.0","@typescript-eslint/eslint-plugin":"^4.0.1","@typescript-eslint/parser":"^4.0.1","assert-helpers":"^7.2.0","eslint":"^7.8.1","eslint-config-bevry":"^3.22.0","eslint-config-prettier":"^6.11.0","eslint-plugin-prettier":"^3.1.4","kava":"^5.11.0","make-deno-edition":"^1.1.1","prettier":"^2.1.1","projectz":"^2.15.0","surge":"^0.21.6","typedoc":"^0.19.0","typescript":"^4.0.2","valid-directory":"^3.3.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:deno && npm run our:compile:edition-esnext && npm run our:compile:edition-esnext-esm && npm run our:compile:types","our:compile:deno":"make-deno-edition --attempt","our:compile:edition-esnext":"tsc --module commonjs --target ESNext --outDir ./edition-esnext --project tsconfig.json && ( test ! -d edition-esnext/source || ( mv edition-esnext/source edition-temp && rm -Rf edition-esnext && mv edition-temp edition-esnext ) ) && echo '{\"type\": \"commonjs\"}' > edition-esnext/package.json","our:compile:edition-esnext-esm":"tsc --module ESNext --target ESNext --outDir ./edition-esnext-esm --project tsconfig.json && ( test ! -d edition-esnext-esm/source || ( mv edition-esnext-esm/source edition-temp && rm -Rf edition-esnext-esm && mv edition-temp edition-esnext-esm ) ) && echo '{\"type\": \"module\"}' > edition-esnext-esm/package.json","our:compile:types":"tsc --project tsconfig.json --emitDeclarationOnly --declaration --declarationMap --declarationDir ./compiled-types && ( test ! -d compiled-types/source || ( mv compiled-types/source edition-temp && rm -Rf compiled-types && mv edition-temp compiled-types ) )","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz","our:meta:contributors":"update-contributors","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier","our:verify:directory":"valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write .","test":"node ./edition-esnext/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"deno":"edition-deno/index.ts","gitHead":"50b347d69236a994a50492aad07968c0c834108f","readmeFilename":"README.md","_id":"getmac@5.16.0-next.1602413203.50b347d69236a994a50492aad07968c0c834108f","_nodeVersion":"14.13.1","_npmVersion":"6.14.8","dist":{"shasum":"1ed46569eee0001661af8f63628f1191c0c7501c","size":9395,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-5.16.0-next.1602413203.50b347d69236a994a50492aad07968c0c834108f.tgz","integrity":"sha512-q3aLFIGHu58zFnZ76xjF2tjWsjGrHJwIwKOh80vm+VTyAjZFzHoUQH2ae+4RppDi78+oLWP/U9FcGOP0m6T1vA=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_5.16.0-next.1602413203.50b347d69236a994a50492aad07968c0c834108f_1602413204850_0.09140802088268773"},"_hasShrinkwrap":false,"publish_time":1602413204968,"_cnpm_publish_time":1602413204968,"_cnpmcore_publish_time":"2021-12-16T22:28:53.424Z"},"5.16.0-next.1602409164.c58540230796d906f9df3ee7ac58e3251c532f3a":{"name":"getmac","version":"5.16.0-next.1602409164.c58540230796d906f9df3ee7ac58e3251c532f3a","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["deno","deno-edition","deno-entry","denoland","esnext","export-default","getmac","ifconfig","ipconfig","mac","mac-address","node","typed","types","typescript"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","githubsponsors","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"githubSponsorsUsername":"balupton","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com","githubUsername":"bevry","githubRepository":"getmac","githubSlug":"bevry/getmac","npmPackageName":"getmac"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://github.com/balupton"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/Ogdentrod"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"Isaac Huang","url":"https://github.com/caasi"},{"name":"Jan Pilzer","url":"https://github.com/Hirse"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"zboszor","url":"https://github.com/zboszor"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=10"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["source","typescript","import"],"engines":false},{"description":"TypeScript compiled against ESNext for Node.js 10 || 12 || 13 || 14 with Require for modules","directory":"edition-esnext","entry":"index.js","tags":["compiled","javascript","esnext","require"],"engines":{"node":"10 || 12 || 13 || 14","browsers":false}},{"description":"TypeScript compiled against ESNext for Node.js 12 || 13 || 14 with Import for modules","directory":"edition-esnext-esm","entry":"index.js","tags":["compiled","javascript","esnext","import"],"engines":{"node":"12 || 13 || 14","browsers":false}},{"description":"TypeScript source code made to be compatible with Deno","directory":"edition-deno","entry":"index.ts","tags":["typescript","import","deno"],"engines":{"deno":true,"browsers":false}}],"types":"./compiled-types/","type":"module","main":"edition-esnext/index.js","exports":{"node":{"import":"./edition-esnext-esm/index.js","require":"./edition-esnext/index.js"}},"dependencies":{"@types/node":"^14.6.4"},"devDependencies":{"@bevry/update-contributors":"^1.16.0","@typescript-eslint/eslint-plugin":"^4.0.1","@typescript-eslint/parser":"^4.0.1","assert-helpers":"^7.2.0","eslint":"^7.8.1","eslint-config-bevry":"^3.22.0","eslint-config-prettier":"^6.11.0","eslint-plugin-prettier":"^3.1.4","kava":"^5.11.0","make-deno-edition":"^1.1.1","prettier":"^2.1.1","projectz":"^2.15.0","surge":"^0.21.6","typedoc":"^0.19.0","typescript":"^4.0.2","valid-directory":"^3.3.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:deno && npm run our:compile:edition-esnext && npm run our:compile:edition-esnext-esm && npm run our:compile:types","our:compile:deno":"make-deno-edition --attempt","our:compile:edition-esnext":"tsc --module commonjs --target ESNext --outDir ./edition-esnext --project tsconfig.json && ( test ! -d edition-esnext/source || ( mv edition-esnext/source edition-temp && rm -Rf edition-esnext && mv edition-temp edition-esnext ) ) && echo '{\"type\": \"commonjs\"}' > edition-esnext/package.json","our:compile:edition-esnext-esm":"tsc --module ESNext --target ESNext --outDir ./edition-esnext-esm --project tsconfig.json && ( test ! -d edition-esnext-esm/source || ( mv edition-esnext-esm/source edition-temp && rm -Rf edition-esnext-esm && mv edition-temp edition-esnext-esm ) ) && echo '{\"type\": \"module\"}' > edition-esnext-esm/package.json","our:compile:types":"tsc --project tsconfig.json --emitDeclarationOnly --declaration --declarationMap --declarationDir ./compiled-types && ( test ! -d compiled-types/source || ( mv compiled-types/source edition-temp && rm -Rf compiled-types && mv edition-temp compiled-types ) )","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz","our:meta:contributors":"update-contributors","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier","our:verify:directory":"valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write .","test":"node ./edition-esnext/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"deno":"edition-deno/index.ts","gitHead":"c58540230796d906f9df3ee7ac58e3251c532f3a","readmeFilename":"README.md","_id":"getmac@5.16.0-next.1602409164.c58540230796d906f9df3ee7ac58e3251c532f3a","_nodeVersion":"14.13.1","_npmVersion":"6.14.8","dist":{"shasum":"a49c368dbf8bed37ed6fba3d10963fd341c1c459","size":9392,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-5.16.0-next.1602409164.c58540230796d906f9df3ee7ac58e3251c532f3a.tgz","integrity":"sha512-IY5gi1bztjCCLUV63pXCR/zIPCBB8Vf0DOSHRqEEMsXRK+6dQpckJY8UcuNbWSDlg4fFdWGAuIy3v9s7mAKP4g=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_5.16.0-next.1602409164.c58540230796d906f9df3ee7ac58e3251c532f3a_1602409166311_0.6881900449905791"},"_hasShrinkwrap":false,"publish_time":1602409166450,"_cnpm_publish_time":1602409166450,"_cnpmcore_publish_time":"2021-12-16T22:28:53.646Z"},"5.16.0-next.1601797672.05dc7f7d72c88efe5bff4a0ff2f5882b9faaa14e":{"name":"getmac","version":"5.16.0-next.1601797672.05dc7f7d72c88efe5bff4a0ff2f5882b9faaa14e","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["deno","deno-edition","deno-entry","denoland","esnext","export-default","getmac","ifconfig","ipconfig","mac","mac-address","node","typed","types","typescript"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","githubsponsors","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"githubSponsorsUsername":"balupton","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com","githubUsername":"bevry","githubRepository":"getmac","githubSlug":"bevry/getmac","npmPackageName":"getmac"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://github.com/balupton"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/Ogdentrod"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"Isaac Huang","url":"https://github.com/caasi"},{"name":"Jan Pilzer","url":"https://github.com/Hirse"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"zboszor","url":"https://github.com/zboszor"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=10"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["source","typescript","import"],"engines":false},{"description":"TypeScript compiled against ESNext for Node.js 10 || 12 || 13 || 14 with Require for modules","directory":"edition-esnext","entry":"index.js","tags":["compiled","javascript","esnext","require"],"engines":{"node":"10 || 12 || 13 || 14","browsers":false}},{"description":"TypeScript compiled against ESNext for Node.js 12 || 13 || 14 with Import for modules","directory":"edition-esnext-esm","entry":"index.js","tags":["compiled","javascript","esnext","import"],"engines":{"node":"12 || 13 || 14","browsers":false}},{"description":"TypeScript source code made to be compatible with Deno","directory":"edition-deno","entry":"index.ts","tags":["typescript","import","deno"],"engines":{"deno":true,"browsers":false}}],"types":"./compiled-types/","type":"module","main":"edition-esnext/index.js","exports":{"node":{"import":"./edition-esnext-esm/index.js","require":"./edition-esnext/index.js"}},"dependencies":{"@types/node":"^14.6.4"},"devDependencies":{"@bevry/update-contributors":"^1.16.0","@typescript-eslint/eslint-plugin":"^4.0.1","@typescript-eslint/parser":"^4.0.1","assert-helpers":"^7.2.0","eslint":"^7.8.1","eslint-config-bevry":"^3.22.0","eslint-config-prettier":"^6.11.0","eslint-plugin-prettier":"^3.1.4","kava":"^5.11.0","make-deno-edition":"^1.1.1","prettier":"^2.1.1","projectz":"^2.15.0","surge":"^0.21.6","typedoc":"^0.19.0","typescript":"^4.0.2","valid-directory":"^3.3.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:deno && npm run our:compile:edition-esnext && npm run our:compile:edition-esnext-esm && npm run our:compile:types","our:compile:deno":"make-deno-edition --attempt","our:compile:edition-esnext":"tsc --module commonjs --target ESNext --outDir ./edition-esnext --project tsconfig.json && ( test ! -d edition-esnext/source || ( mv edition-esnext/source edition-temp && rm -Rf edition-esnext && mv edition-temp edition-esnext ) ) && echo '{\"type\": \"commonjs\"}' > edition-esnext/package.json","our:compile:edition-esnext-esm":"tsc --module ESNext --target ESNext --outDir ./edition-esnext-esm --project tsconfig.json && ( test ! -d edition-esnext-esm/source || ( mv edition-esnext-esm/source edition-temp && rm -Rf edition-esnext-esm && mv edition-temp edition-esnext-esm ) ) && echo '{\"type\": \"module\"}' > edition-esnext-esm/package.json","our:compile:types":"tsc --project tsconfig.json --emitDeclarationOnly --declaration --declarationMap --declarationDir ./compiled-types && ( test ! -d compiled-types/source || ( mv compiled-types/source edition-temp && rm -Rf compiled-types && mv edition-temp compiled-types ) )","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz","our:meta:contributors":"update-contributors","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier","our:verify:directory":"valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write .","test":"node ./edition-esnext/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"deno":"edition-deno/index.ts","gitHead":"05dc7f7d72c88efe5bff4a0ff2f5882b9faaa14e","readmeFilename":"README.md","_id":"getmac@5.16.0-next.1601797672.05dc7f7d72c88efe5bff4a0ff2f5882b9faaa14e","_nodeVersion":"14.13.0","_npmVersion":"6.14.8","dist":{"shasum":"30d2a9632e47c4cd1b7d9c7dc42bdd8320a7898e","size":9393,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-5.16.0-next.1601797672.05dc7f7d72c88efe5bff4a0ff2f5882b9faaa14e.tgz","integrity":"sha512-FKHH3AIXRyEhMuzj8xZauP9YGWqiHQhjFsm5TesXyJfa94KYY+pXJ0dQhToxbfU3KMB6LHOe9CXkfpqWt/Cr1w=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_5.16.0-next.1601797672.05dc7f7d72c88efe5bff4a0ff2f5882b9faaa14e_1601797673987_0.5916879968799695"},"_hasShrinkwrap":false,"publish_time":1601797674166,"_cnpm_publish_time":1601797674166,"_cnpmcore_publish_time":"2021-12-16T22:28:53.851Z"},"5.16.0-next.1601214092.03eedb7b9671766b262d44bfb648ebb47c699614":{"name":"getmac","version":"5.16.0-next.1601214092.03eedb7b9671766b262d44bfb648ebb47c699614","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["deno","deno-edition","deno-entry","denoland","esnext","export-default","getmac","ifconfig","ipconfig","mac","mac-address","node","typed","types","typescript"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","githubsponsors","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"githubSponsorsUsername":"balupton","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com","githubUsername":"bevry","githubRepository":"getmac","githubSlug":"bevry/getmac","npmPackageName":"getmac"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://github.com/balupton"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/Ogdentrod"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"Isaac Huang","url":"https://github.com/caasi"},{"name":"Jan Pilzer","url":"https://github.com/Hirse"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"zboszor","url":"https://github.com/zboszor"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=10"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["source","typescript","import"],"engines":false},{"description":"TypeScript compiled against ESNext for Node.js 10 || 12 || 13 || 14 with Require for modules","directory":"edition-esnext","entry":"index.js","tags":["compiled","javascript","esnext","require"],"engines":{"node":"10 || 12 || 13 || 14","browsers":false}},{"description":"TypeScript compiled against ESNext for Node.js 12 || 13 || 14 with Import for modules","directory":"edition-esnext-esm","entry":"index.js","tags":["compiled","javascript","esnext","import"],"engines":{"node":"12 || 13 || 14","browsers":false}},{"description":"TypeScript source code made to be compatible with Deno","directory":"edition-deno","entry":"index.ts","tags":["typescript","import","deno"],"engines":{"deno":true,"browsers":false}}],"types":"./compiled-types/","type":"module","main":"edition-esnext/index.js","exports":{"node":{"import":"./edition-esnext-esm/index.js","require":"./edition-esnext/index.js"}},"dependencies":{"@types/node":"^14.6.4"},"devDependencies":{"@bevry/update-contributors":"^1.16.0","@typescript-eslint/eslint-plugin":"^4.0.1","@typescript-eslint/parser":"^4.0.1","assert-helpers":"^7.2.0","eslint":"^7.8.1","eslint-config-bevry":"^3.22.0","eslint-config-prettier":"^6.11.0","eslint-plugin-prettier":"^3.1.4","kava":"^5.11.0","make-deno-edition":"^1.1.1","prettier":"^2.1.1","projectz":"^2.15.0","surge":"^0.21.6","typedoc":"^0.19.0","typescript":"^4.0.2","valid-directory":"^3.3.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:deno && npm run our:compile:edition-esnext && npm run our:compile:edition-esnext-esm && npm run our:compile:types","our:compile:deno":"make-deno-edition --attempt","our:compile:edition-esnext":"tsc --module commonjs --target ESNext --outDir ./edition-esnext --project tsconfig.json && ( test ! -d edition-esnext/source || ( mv edition-esnext/source edition-temp && rm -Rf edition-esnext && mv edition-temp edition-esnext ) ) && echo '{\"type\": \"commonjs\"}' > edition-esnext/package.json","our:compile:edition-esnext-esm":"tsc --module ESNext --target ESNext --outDir ./edition-esnext-esm --project tsconfig.json && ( test ! -d edition-esnext-esm/source || ( mv edition-esnext-esm/source edition-temp && rm -Rf edition-esnext-esm && mv edition-temp edition-esnext-esm ) ) && echo '{\"type\": \"module\"}' > edition-esnext-esm/package.json","our:compile:types":"tsc --project tsconfig.json --emitDeclarationOnly --declaration --declarationMap --declarationDir ./compiled-types && ( test ! -d compiled-types/source || ( mv compiled-types/source edition-temp && rm -Rf compiled-types && mv edition-temp compiled-types ) )","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz","our:meta:contributors":"update-contributors","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier","our:verify:directory":"valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write .","test":"node ./edition-esnext/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"deno":"edition-deno/index.ts","gitHead":"03eedb7b9671766b262d44bfb648ebb47c699614","readmeFilename":"README.md","_id":"getmac@5.16.0-next.1601214092.03eedb7b9671766b262d44bfb648ebb47c699614","_nodeVersion":"14.12.0","_npmVersion":"6.14.8","dist":{"shasum":"38d532370f115bb9f3e6c21f9e400e78046a94b4","size":9394,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-5.16.0-next.1601214092.03eedb7b9671766b262d44bfb648ebb47c699614.tgz","integrity":"sha512-FhI8FfQYJM3ULBUF1dBraK6jHs1HKkKnQ7ye6IzB6MEynxryrvcEm0FekYKyeI8xCW4WX0qhi3u7mJlT0lrCpw=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_5.16.0-next.1601214092.03eedb7b9671766b262d44bfb648ebb47c699614_1601214093526_0.5489454156058535"},"_hasShrinkwrap":false,"publish_time":1601214093726,"_cnpm_publish_time":1601214093726,"_cnpmcore_publish_time":"2021-12-16T22:28:54.063Z"},"5.16.0-next.1600600292.5754776faba7cdb6782d10680970d6a4a8039c15":{"name":"getmac","version":"5.16.0-next.1600600292.5754776faba7cdb6782d10680970d6a4a8039c15","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["deno","deno-edition","deno-entry","denoland","esnext","export-default","getmac","ifconfig","ipconfig","mac","mac-address","node","typed","types","typescript"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","githubsponsors","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"githubSponsorsUsername":"balupton","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com","githubUsername":"bevry","githubRepository":"getmac","githubSlug":"bevry/getmac","npmPackageName":"getmac"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://github.com/balupton"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/Ogdentrod"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"Isaac Huang","url":"https://github.com/caasi"},{"name":"Jan Pilzer","url":"https://github.com/Hirse"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"zboszor","url":"https://github.com/zboszor"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=10"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["source","typescript","import"],"engines":false},{"description":"TypeScript compiled against ESNext for Node.js 10 || 12 || 13 || 14 with Require for modules","directory":"edition-esnext","entry":"index.js","tags":["compiled","javascript","esnext","require"],"engines":{"node":"10 || 12 || 13 || 14","browsers":false}},{"description":"TypeScript compiled against ESNext for Node.js 12 || 13 || 14 with Import for modules","directory":"edition-esnext-esm","entry":"index.js","tags":["compiled","javascript","esnext","import"],"engines":{"node":"12 || 13 || 14","browsers":false}},{"description":"TypeScript source code made to be compatible with Deno","directory":"edition-deno","entry":"index.ts","tags":["typescript","import","deno"],"engines":{"deno":true,"browsers":false}}],"types":"./compiled-types/","type":"module","main":"edition-esnext/index.js","exports":{"node":{"import":"./edition-esnext-esm/index.js","require":"./edition-esnext/index.js"}},"dependencies":{"@types/node":"^14.6.4"},"devDependencies":{"@bevry/update-contributors":"^1.16.0","@typescript-eslint/eslint-plugin":"^4.0.1","@typescript-eslint/parser":"^4.0.1","assert-helpers":"^7.2.0","eslint":"^7.8.1","eslint-config-bevry":"^3.22.0","eslint-config-prettier":"^6.11.0","eslint-plugin-prettier":"^3.1.4","kava":"^5.11.0","make-deno-edition":"^1.1.1","prettier":"^2.1.1","projectz":"^2.15.0","surge":"^0.21.6","typedoc":"^0.19.0","typescript":"^4.0.2","valid-directory":"^3.3.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:deno && npm run our:compile:edition-esnext && npm run our:compile:edition-esnext-esm && npm run our:compile:types","our:compile:deno":"make-deno-edition --attempt","our:compile:edition-esnext":"tsc --module commonjs --target ESNext --outDir ./edition-esnext --project tsconfig.json && ( test ! -d edition-esnext/source || ( mv edition-esnext/source edition-temp && rm -Rf edition-esnext && mv edition-temp edition-esnext ) ) && echo '{\"type\": \"commonjs\"}' > edition-esnext/package.json","our:compile:edition-esnext-esm":"tsc --module ESNext --target ESNext --outDir ./edition-esnext-esm --project tsconfig.json && ( test ! -d edition-esnext-esm/source || ( mv edition-esnext-esm/source edition-temp && rm -Rf edition-esnext-esm && mv edition-temp edition-esnext-esm ) ) && echo '{\"type\": \"module\"}' > edition-esnext-esm/package.json","our:compile:types":"tsc --project tsconfig.json --emitDeclarationOnly --declaration --declarationMap --declarationDir ./compiled-types && ( test ! -d compiled-types/source || ( mv compiled-types/source edition-temp && rm -Rf compiled-types && mv edition-temp compiled-types ) )","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz","our:meta:contributors":"update-contributors","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier","our:verify:directory":"valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write .","test":"node ./edition-esnext/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"deno":"edition-deno/index.ts","gitHead":"5754776faba7cdb6782d10680970d6a4a8039c15","readmeFilename":"README.md","_id":"getmac@5.16.0-next.1600600292.5754776faba7cdb6782d10680970d6a4a8039c15","_nodeVersion":"14.11.0","_npmVersion":"6.14.8","dist":{"shasum":"9194797729aae2939909e3905f741d0e76ce60b0","size":9394,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-5.16.0-next.1600600292.5754776faba7cdb6782d10680970d6a4a8039c15.tgz","integrity":"sha512-yfWvAvk124/q/XaQlXTpeqTA2H3Mzp5B5s6azpyHtciw2yVvpRriBqvHinAbHiVLXlejxhZ4Pwj6cpH5qBhN4g=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_5.16.0-next.1600600292.5754776faba7cdb6782d10680970d6a4a8039c15_1600600293638_0.6289539362713616"},"_hasShrinkwrap":false,"publish_time":1600600293776,"_cnpm_publish_time":1600600293776,"_cnpmcore_publish_time":"2021-12-16T22:28:54.412Z"},"5.16.0-next.1599999453.1ba0be43604e76c2d0a08e653da756049dc0f2f2":{"name":"getmac","version":"5.16.0-next.1599999453.1ba0be43604e76c2d0a08e653da756049dc0f2f2","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["deno","deno-edition","deno-entry","denoland","esnext","export-default","getmac","ifconfig","ipconfig","mac","mac-address","node","typed","types","typescript"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","githubsponsors","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"githubSponsorsUsername":"balupton","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com","githubUsername":"bevry","githubRepository":"getmac","githubSlug":"bevry/getmac","npmPackageName":"getmac"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://github.com/balupton"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/Ogdentrod"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"Isaac Huang","url":"https://github.com/caasi"},{"name":"Jan Pilzer","url":"https://github.com/Hirse"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"zboszor","url":"https://github.com/zboszor"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=10"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["source","typescript","import"],"engines":false},{"description":"TypeScript compiled against ESNext for Node.js 10 || 12 || 13 || 14 with Require for modules","directory":"edition-esnext","entry":"index.js","tags":["compiled","javascript","esnext","require"],"engines":{"node":"10 || 12 || 13 || 14","browsers":false}},{"description":"TypeScript compiled against ESNext for Node.js 12 || 13 || 14 with Import for modules","directory":"edition-esnext-esm","entry":"index.js","tags":["compiled","javascript","esnext","import"],"engines":{"node":"12 || 13 || 14","browsers":false}},{"description":"TypeScript source code made to be compatible with Deno","directory":"edition-deno","entry":"index.ts","tags":["typescript","import","deno"],"engines":{"deno":true,"browsers":false}}],"types":"./compiled-types/","type":"module","main":"edition-esnext/index.js","exports":{"node":{"import":"./edition-esnext-esm/index.js","require":"./edition-esnext/index.js"}},"dependencies":{"@types/node":"^14.6.4"},"devDependencies":{"@bevry/update-contributors":"^1.16.0","@typescript-eslint/eslint-plugin":"^4.0.1","@typescript-eslint/parser":"^4.0.1","assert-helpers":"^7.2.0","eslint":"^7.8.1","eslint-config-bevry":"^3.22.0","eslint-config-prettier":"^6.11.0","eslint-plugin-prettier":"^3.1.4","kava":"^5.11.0","make-deno-edition":"^1.1.1","prettier":"^2.1.1","projectz":"^2.15.0","surge":"^0.21.6","typedoc":"^0.19.0","typescript":"^4.0.2","valid-directory":"^3.3.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:deno && npm run our:compile:edition-esnext && npm run our:compile:edition-esnext-esm && npm run our:compile:types","our:compile:deno":"make-deno-edition --attempt","our:compile:edition-esnext":"tsc --module commonjs --target ESNext --outDir ./edition-esnext --project tsconfig.json && ( test ! -d edition-esnext/source || ( mv edition-esnext/source edition-temp && rm -Rf edition-esnext && mv edition-temp edition-esnext ) ) && echo '{\"type\": \"commonjs\"}' > edition-esnext/package.json","our:compile:edition-esnext-esm":"tsc --module ESNext --target ESNext --outDir ./edition-esnext-esm --project tsconfig.json && ( test ! -d edition-esnext-esm/source || ( mv edition-esnext-esm/source edition-temp && rm -Rf edition-esnext-esm && mv edition-temp edition-esnext-esm ) ) && echo '{\"type\": \"module\"}' > edition-esnext-esm/package.json","our:compile:types":"tsc --project tsconfig.json --emitDeclarationOnly --declaration --declarationMap --declarationDir ./compiled-types && ( test ! -d compiled-types/source || ( mv compiled-types/source edition-temp && rm -Rf compiled-types && mv edition-temp compiled-types ) )","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz","our:meta:contributors":"update-contributors","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier","our:verify:directory":"valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write .","test":"node ./edition-esnext/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"deno":"edition-deno/index.ts","gitHead":"1ba0be43604e76c2d0a08e653da756049dc0f2f2","readmeFilename":"README.md","_id":"getmac@5.16.0-next.1599999453.1ba0be43604e76c2d0a08e653da756049dc0f2f2","_nodeVersion":"14.10.1","_npmVersion":"6.14.8","dist":{"shasum":"96589239a843abb7f30b935ae82e24f3f7ff9731","size":9390,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-5.16.0-next.1599999453.1ba0be43604e76c2d0a08e653da756049dc0f2f2.tgz","integrity":"sha512-n4bVy1ZWeMSL5KVMPRh+K/LxjvO3DS5mn0C4yC7Wm9p5LW5Q20zCPGU/Gx3QmZzW2qJCzfeEo3X0uqCW7zRmeQ=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_5.16.0-next.1599999453.1ba0be43604e76c2d0a08e653da756049dc0f2f2_1599999455025_0.11718004340843646"},"_hasShrinkwrap":false,"publish_time":1599999455172,"_cnpm_publish_time":1599999455172,"_cnpmcore_publish_time":"2021-12-16T22:28:55.155Z"},"5.16.0-next.1599997324.8f363883bc804b5149d933108dc66fdb3b050f80":{"name":"getmac","version":"5.16.0-next.1599997324.8f363883bc804b5149d933108dc66fdb3b050f80","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["deno","deno-edition","deno-entry","denoland","esnext","export-default","getmac","ifconfig","ipconfig","mac","mac-address","node","typed","types","typescript"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","githubsponsors","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"githubSponsorsUsername":"balupton","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com","githubUsername":"bevry","githubRepository":"getmac","githubSlug":"bevry/getmac","npmPackageName":"getmac"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://github.com/balupton"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/Ogdentrod"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"Isaac Huang","url":"https://github.com/caasi"},{"name":"Jan Pilzer","url":"https://github.com/Hirse"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"zboszor","url":"https://github.com/zboszor"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=10"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["source","typescript","import"],"engines":false},{"description":"TypeScript compiled against ESNext for Node.js 10 || 12 || 13 || 14 with Require for modules","directory":"edition-esnext","entry":"index.js","tags":["compiled","javascript","esnext","require"],"engines":{"node":"10 || 12 || 13 || 14","browsers":false}},{"description":"TypeScript compiled against ESNext for Node.js 12 || 13 || 14 with Import for modules","directory":"edition-esnext-esm","entry":"index.js","tags":["compiled","javascript","esnext","import"],"engines":{"node":"12 || 13 || 14","browsers":false}},{"description":"TypeScript source code made to be compatible with Deno","directory":"edition-deno","entry":"index.ts","tags":["typescript","import","deno"],"engines":{"deno":true,"browsers":false}}],"types":"./compiled-types/","type":"module","main":"edition-esnext/index.js","exports":{"node":{"import":"./edition-esnext-esm/index.js","require":"./edition-esnext/index.js"}},"dependencies":{"@types/node":"^14.6.4"},"devDependencies":{"@bevry/update-contributors":"^1.16.0","@typescript-eslint/eslint-plugin":"^4.0.1","@typescript-eslint/parser":"^4.0.1","assert-helpers":"^7.2.0","eslint":"^7.8.1","eslint-config-bevry":"^3.22.0","eslint-config-prettier":"^6.11.0","eslint-plugin-prettier":"^3.1.4","kava":"^5.11.0","make-deno-edition":"^1.1.1","prettier":"^2.1.1","projectz":"^2.15.0","surge":"^0.21.6","typedoc":"^0.19.0","typescript":"^4.0.2","valid-directory":"^3.3.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:deno && npm run our:compile:edition-esnext && npm run our:compile:edition-esnext-esm && npm run our:compile:types","our:compile:deno":"make-deno-edition --attempt","our:compile:edition-esnext":"tsc --module commonjs --target ESNext --outDir ./edition-esnext --project tsconfig.json && ( test ! -d edition-esnext/source || ( mv edition-esnext/source edition-temp && rm -Rf edition-esnext && mv edition-temp edition-esnext ) ) && echo '{\"type\": \"commonjs\"}' > edition-esnext/package.json","our:compile:edition-esnext-esm":"tsc --module ESNext --target ESNext --outDir ./edition-esnext-esm --project tsconfig.json && ( test ! -d edition-esnext-esm/source || ( mv edition-esnext-esm/source edition-temp && rm -Rf edition-esnext-esm && mv edition-temp edition-esnext-esm ) ) && echo '{\"type\": \"module\"}' > edition-esnext-esm/package.json","our:compile:types":"tsc --project tsconfig.json --emitDeclarationOnly --declaration --declarationMap --declarationDir ./compiled-types && ( test ! -d compiled-types/source || ( mv compiled-types/source edition-temp && rm -Rf compiled-types && mv edition-temp compiled-types ) )","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz","our:meta:contributors":"update-contributors","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier","our:verify:directory":"valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write .","test":"node ./edition-esnext/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"deno":"edition-deno/index.ts","gitHead":"8f363883bc804b5149d933108dc66fdb3b050f80","readmeFilename":"README.md","_id":"getmac@5.16.0-next.1599997324.8f363883bc804b5149d933108dc66fdb3b050f80","_nodeVersion":"14.10.1","_npmVersion":"6.14.8","dist":{"shasum":"ec5f039b4f1b61e3309cb081230d77012e74b8b8","size":9395,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-5.16.0-next.1599997324.8f363883bc804b5149d933108dc66fdb3b050f80.tgz","integrity":"sha512-SqA1RH4Og7s+1dsUERVD0f4uP02+WkWg/zcKtJk1cClHD+6ceTQZLQWFUpZIM0pU32Nb6xVHft4V75Ij5fpKVQ=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_5.16.0-next.1599997324.8f363883bc804b5149d933108dc66fdb3b050f80_1599997325786_0.22476240771385325"},"_hasShrinkwrap":false,"publish_time":1599997325887,"_cnpm_publish_time":1599997325887,"_cnpmcore_publish_time":"2021-12-16T22:28:55.434Z"},"5.16.0-next.1599397736.1c70ffebcb76d84094de3907cda859924adab088":{"name":"getmac","version":"5.16.0-next.1599397736.1c70ffebcb76d84094de3907cda859924adab088","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["deno","deno-edition","deno-entry","denoland","esnext","export-default","getmac","ifconfig","ipconfig","mac","mac-address","node","typed","types","typescript"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","githubsponsors","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"githubSponsorsUsername":"balupton","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com","githubUsername":"bevry","githubRepository":"getmac","githubSlug":"bevry/getmac","npmPackageName":"getmac"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://github.com/balupton"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/Ogdentrod"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"Isaac Huang","url":"https://github.com/caasi"},{"name":"Jan Pilzer","url":"https://github.com/Hirse"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"zboszor","url":"https://github.com/zboszor"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=10"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["source","typescript","import"],"engines":false},{"description":"TypeScript compiled against ESNext for Node.js 10 || 12 || 13 || 14 with Require for modules","directory":"edition-esnext","entry":"index.js","tags":["compiled","javascript","esnext","require"],"engines":{"node":"10 || 12 || 13 || 14","browsers":false}},{"description":"TypeScript compiled against ESNext for Node.js 12 || 13 || 14 with Import for modules","directory":"edition-esnext-esm","entry":"index.js","tags":["compiled","javascript","esnext","import"],"engines":{"node":"12 || 13 || 14","browsers":false}},{"description":"TypeScript source code made to be compatible with Deno","directory":"edition-deno","entry":"index.ts","tags":["typescript","import","deno"],"engines":{"deno":true,"browsers":false}}],"types":"./compiled-types/","type":"module","main":"edition-esnext/index.js","exports":{"node":{"import":"./edition-esnext-esm/index.js","require":"./edition-esnext/index.js"}},"dependencies":{"@types/node":"^14.6.4"},"devDependencies":{"@bevry/update-contributors":"^1.16.0","@typescript-eslint/eslint-plugin":"^4.0.1","@typescript-eslint/parser":"^4.0.1","assert-helpers":"^7.2.0","eslint":"^7.8.1","eslint-config-bevry":"^3.22.0","eslint-config-prettier":"^6.11.0","eslint-plugin-prettier":"^3.1.4","kava":"^5.11.0","make-deno-edition":"^1.1.1","prettier":"^2.1.1","projectz":"^2.15.0","surge":"^0.21.6","typedoc":"^0.19.0","typescript":"^4.0.2","valid-directory":"^3.3.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:deno && npm run our:compile:edition-esnext && npm run our:compile:edition-esnext-esm && npm run our:compile:types","our:compile:deno":"make-deno-edition --attempt","our:compile:edition-esnext":"tsc --module commonjs --target ESNext --outDir ./edition-esnext --project tsconfig.json && ( test ! -d edition-esnext/source || ( mv edition-esnext/source edition-temp && rm -Rf edition-esnext && mv edition-temp edition-esnext ) ) && echo '{\"type\": \"commonjs\"}' > edition-esnext/package.json","our:compile:edition-esnext-esm":"tsc --module ESNext --target ESNext --outDir ./edition-esnext-esm --project tsconfig.json && ( test ! -d edition-esnext-esm/source || ( mv edition-esnext-esm/source edition-temp && rm -Rf edition-esnext-esm && mv edition-temp edition-esnext-esm ) ) && echo '{\"type\": \"module\"}' > edition-esnext-esm/package.json","our:compile:types":"tsc --project tsconfig.json --emitDeclarationOnly --declaration --declarationMap --declarationDir ./compiled-types && ( test ! -d compiled-types/source || ( mv compiled-types/source edition-temp && rm -Rf compiled-types && mv edition-temp compiled-types ) )","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz","our:meta:contributors":"update-contributors","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier","our:verify:directory":"valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write .","test":"node ./edition-esnext/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"deno":"edition-deno/index.ts","gitHead":"1c70ffebcb76d84094de3907cda859924adab088","readmeFilename":"README.md","_id":"getmac@5.16.0-next.1599397736.1c70ffebcb76d84094de3907cda859924adab088","_nodeVersion":"14.9.0","_npmVersion":"6.14.8","dist":{"shasum":"020f6c93278c13c782888911011a922a5ae66e09","size":9394,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-5.16.0-next.1599397736.1c70ffebcb76d84094de3907cda859924adab088.tgz","integrity":"sha512-2D2TPFLu4cAYJNs88+t0dxpDfzwz5kOxbTNGuj0UbF91c7wJ3l4wbIgORl5aNiIv9MfHr3ys8EjnzX4+1lV4Ww=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_5.16.0-next.1599397736.1c70ffebcb76d84094de3907cda859924adab088_1599397738109_0.34591156846800275"},"_hasShrinkwrap":false,"publish_time":1599397738293,"_cnpm_publish_time":1599397738293,"_cnpmcore_publish_time":"2021-12-16T22:28:55.629Z"},"5.16.0":{"name":"getmac","version":"5.16.0","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["deno","deno-edition","deno-entry","denoland","esnext","export-default","getmac","ifconfig","ipconfig","mac","mac-address","node","typed","types","typescript"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","githubsponsors","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"githubSponsorsUsername":"balupton","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com","githubUsername":"bevry","githubRepository":"getmac","githubSlug":"bevry/getmac","npmPackageName":"getmac"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://github.com/balupton"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/Ogdentrod"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"Isaac Huang","url":"https://github.com/caasi"},{"name":"Jan Pilzer","url":"https://github.com/Hirse"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"zboszor","url":"https://github.com/zboszor"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=10"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["source","typescript","import"],"engines":false},{"description":"TypeScript compiled against ESNext for Node.js 10 || 12 || 13 || 14 with Require for modules","directory":"edition-esnext","entry":"index.js","tags":["compiled","javascript","esnext","require"],"engines":{"node":"10 || 12 || 13 || 14","browsers":false}},{"description":"TypeScript compiled against ESNext for Node.js 12 || 13 || 14 with Import for modules","directory":"edition-esnext-esm","entry":"index.js","tags":["compiled","javascript","esnext","import"],"engines":{"node":"12 || 13 || 14","browsers":false}},{"description":"TypeScript source code made to be compatible with Deno","directory":"edition-deno","entry":"index.ts","tags":["typescript","import","deno"],"engines":{"deno":true,"browsers":false}}],"types":"./compiled-types/","type":"module","main":"edition-esnext/index.js","exports":{"node":{"import":"./edition-esnext-esm/index.js","require":"./edition-esnext/index.js"}},"dependencies":{"@types/node":"^14.6.4"},"devDependencies":{"@bevry/update-contributors":"^1.16.0","@typescript-eslint/eslint-plugin":"^4.0.1","@typescript-eslint/parser":"^4.0.1","assert-helpers":"^7.2.0","eslint":"^7.8.1","eslint-config-bevry":"^3.22.0","eslint-config-prettier":"^6.11.0","eslint-plugin-prettier":"^3.1.4","kava":"^5.11.0","make-deno-edition":"^1.1.1","prettier":"^2.1.1","projectz":"^2.15.0","surge":"^0.21.6","typedoc":"^0.19.0","typescript":"^4.0.2","valid-directory":"^3.3.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:deno && npm run our:compile:edition-esnext && npm run our:compile:edition-esnext-esm && npm run our:compile:types","our:compile:deno":"make-deno-edition --attempt","our:compile:edition-esnext":"tsc --module commonjs --target ESNext --outDir ./edition-esnext --project tsconfig.json && ( test ! -d edition-esnext/source || ( mv edition-esnext/source edition-temp && rm -Rf edition-esnext && mv edition-temp edition-esnext ) ) && echo '{\"type\": \"commonjs\"}' > edition-esnext/package.json","our:compile:edition-esnext-esm":"tsc --module ESNext --target ESNext --outDir ./edition-esnext-esm --project tsconfig.json && ( test ! -d edition-esnext-esm/source || ( mv edition-esnext-esm/source edition-temp && rm -Rf edition-esnext-esm && mv edition-temp edition-esnext-esm ) ) && echo '{\"type\": \"module\"}' > edition-esnext-esm/package.json","our:compile:types":"tsc --project tsconfig.json --emitDeclarationOnly --declaration --declarationMap --declarationDir ./compiled-types && ( test ! -d compiled-types/source || ( mv compiled-types/source edition-temp && rm -Rf compiled-types && mv edition-temp compiled-types ) )","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz","our:meta:contributors":"update-contributors","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier","our:verify:directory":"valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write .","test":"node ./edition-esnext/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"deno":"edition-deno/index.ts","gitHead":"749d2125658ab1ee17d71921f760a97107e18c28","_id":"getmac@5.16.0","_nodeVersion":"14.9.0","_npmVersion":"6.14.8","dist":{"shasum":"5e33286b455dbfc01e5590d1fd32c968dd937833","size":9343,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-5.16.0.tgz","integrity":"sha512-6uY8p55XkkxO7gwLw5IKii29OLOe6qSh8zWFRXJUtf6uGwlGztUZ30xWtQgCAGhOP2aR3Rb5h+TFrG/RKIooAA=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_5.16.0_1599224809633_0.8518781129374438"},"_hasShrinkwrap":false,"publish_time":1599224809745,"_cnpm_publish_time":1599224809745,"_cnpmcore_publish_time":"2021-12-16T22:28:55.859Z"},"5.16.0-next.1599224731.749d2125658ab1ee17d71921f760a97107e18c28":{"name":"getmac","version":"5.16.0-next.1599224731.749d2125658ab1ee17d71921f760a97107e18c28","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["deno","deno-edition","deno-entry","denoland","esnext","export-default","getmac","ifconfig","ipconfig","mac","mac-address","node","typed","types","typescript"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","githubsponsors","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"githubSponsorsUsername":"balupton","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com","githubUsername":"bevry","githubRepository":"getmac","githubSlug":"bevry/getmac","npmPackageName":"getmac"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://github.com/balupton"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/Ogdentrod"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"Isaac Huang","url":"https://github.com/caasi"},{"name":"Jan Pilzer","url":"https://github.com/Hirse"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"zboszor","url":"https://github.com/zboszor"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=10"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["source","typescript","import"],"engines":false},{"description":"TypeScript compiled against ESNext for Node.js 10 || 12 || 13 || 14 with Require for modules","directory":"edition-esnext","entry":"index.js","tags":["compiled","javascript","esnext","require"],"engines":{"node":"10 || 12 || 13 || 14","browsers":false}},{"description":"TypeScript compiled against ESNext for Node.js 12 || 13 || 14 with Import for modules","directory":"edition-esnext-esm","entry":"index.js","tags":["compiled","javascript","esnext","import"],"engines":{"node":"12 || 13 || 14","browsers":false}},{"description":"TypeScript source code made to be compatible with Deno","directory":"edition-deno","entry":"index.ts","tags":["typescript","import","deno"],"engines":{"deno":true,"browsers":false}}],"types":"./compiled-types/","type":"module","main":"edition-esnext/index.js","exports":{"node":{"import":"./edition-esnext-esm/index.js","require":"./edition-esnext/index.js"}},"dependencies":{"@types/node":"^14.6.4"},"devDependencies":{"@bevry/update-contributors":"^1.16.0","@typescript-eslint/eslint-plugin":"^4.0.1","@typescript-eslint/parser":"^4.0.1","assert-helpers":"^7.2.0","eslint":"^7.8.1","eslint-config-bevry":"^3.22.0","eslint-config-prettier":"^6.11.0","eslint-plugin-prettier":"^3.1.4","kava":"^5.11.0","make-deno-edition":"^1.1.1","prettier":"^2.1.1","projectz":"^2.15.0","surge":"^0.21.6","typedoc":"^0.19.0","typescript":"^4.0.2","valid-directory":"^3.3.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:deno && npm run our:compile:edition-esnext && npm run our:compile:edition-esnext-esm && npm run our:compile:types","our:compile:deno":"make-deno-edition --attempt","our:compile:edition-esnext":"tsc --module commonjs --target ESNext --outDir ./edition-esnext --project tsconfig.json && ( test ! -d edition-esnext/source || ( mv edition-esnext/source edition-temp && rm -Rf edition-esnext && mv edition-temp edition-esnext ) ) && echo '{\"type\": \"commonjs\"}' > edition-esnext/package.json","our:compile:edition-esnext-esm":"tsc --module ESNext --target ESNext --outDir ./edition-esnext-esm --project tsconfig.json && ( test ! -d edition-esnext-esm/source || ( mv edition-esnext-esm/source edition-temp && rm -Rf edition-esnext-esm && mv edition-temp edition-esnext-esm ) ) && echo '{\"type\": \"module\"}' > edition-esnext-esm/package.json","our:compile:types":"tsc --project tsconfig.json --emitDeclarationOnly --declaration --declarationMap --declarationDir ./compiled-types && ( test ! -d compiled-types/source || ( mv compiled-types/source edition-temp && rm -Rf compiled-types && mv edition-temp compiled-types ) )","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz","our:meta:contributors":"update-contributors","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier","our:verify:directory":"valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write .","test":"node ./edition-esnext/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"deno":"edition-deno/index.ts","gitHead":"749d2125658ab1ee17d71921f760a97107e18c28","readmeFilename":"README.md","_id":"getmac@5.16.0-next.1599224731.749d2125658ab1ee17d71921f760a97107e18c28","_nodeVersion":"14.9.0","_npmVersion":"6.14.8","dist":{"shasum":"16091567fa3d57c74d944e89739d469ca49d5cf8","size":9395,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-5.16.0-next.1599224731.749d2125658ab1ee17d71921f760a97107e18c28.tgz","integrity":"sha512-kkkfZDxz6Xyf6ksxQ3e2qH6q/qaGGL5odMFMSPBwCLOE2sIHoXLmY/OF5EXeh3mLi7d0AUB5v5mT4Bz0nHHyzA=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_5.16.0-next.1599224731.749d2125658ab1ee17d71921f760a97107e18c28_1599224732591_0.5953696299209299"},"_hasShrinkwrap":false,"publish_time":1599224732784,"_cnpm_publish_time":1599224732784,"_cnpmcore_publish_time":"2021-12-16T22:28:56.083Z"},"5.15.0-next.1599201941.bddcaefa3e2036aa0e10ae24cace81f98153de72":{"name":"getmac","version":"5.15.0-next.1599201941.bddcaefa3e2036aa0e10ae24cace81f98153de72","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["deno","deno-edition","deno-entry","denoland","export-default","getmac","ifconfig","ipconfig","mac","mac-address","node","typed","types","typescript"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","githubsponsors","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"githubSponsorsUsername":"balupton","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com","githubUsername":"bevry","githubRepository":"getmac","githubSlug":"bevry/getmac","npmPackageName":"getmac"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://github.com/balupton"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/Ogdentrod"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"Isaac Huang","url":"https://github.com/caasi"},{"name":"Jan Pilzer","url":"https://github.com/Hirse"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"zboszor","url":"https://github.com/zboszor"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=10"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["typescript","import"],"engines":false},{"description":"TypeScript compiled against ESNext for Node.js 10 || 12 || 13 || 14 with Require for modules","directory":"edition-esnext","entry":"index.js","tags":["javascript","esnext","require"],"engines":{"node":"10 || 12 || 13 || 14"}},{"description":"TypeScript compiled against ESNext for Node.js with Import for modules","directory":"edition-node-esm","entry":"index.js","tags":["javascript","import"],"engines":{"node":true,"browsers":false}},{"description":"TypeScript source code made to be compatible with Deno","directory":"edition-deno","entry":"index.ts","tags":["typescript","import","deno"],"engines":{"deno":true,"browsers":false}}],"types":"./compiled-types/","type":"module","main":"edition-esnext/index.js","exports":{"node":{"import":"./edition-node-esm/index.js","require":"./edition-esnext/index.js"}},"dependencies":{"@types/node":"^14.6.0"},"devDependencies":{"@bevry/update-contributors":"^1.15.0","@typescript-eslint/eslint-plugin":"^3.9.1","@typescript-eslint/parser":"^3.9.1","assert-helpers":"^7.0.1","eslint":"^7.7.0","eslint-config-bevry":"^3.19.0","eslint-config-prettier":"^6.11.0","eslint-plugin-prettier":"^3.1.4","kava":"^5.10.0","make-deno-edition":"^1.0.0","prettier":"^2.0.5","projectz":"^2.14.0","surge":"^0.21.6","typedoc":"^0.18.0","typescript":"^4.0.2","valid-directory":"^3.0.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:deno && npm run our:compile:edition-esnext && npm run our:compile:edition-node-esm && npm run our:compile:types","our:compile:deno":"make-deno-edition --attempt","our:compile:edition-esnext":"tsc --module commonjs --target ESNext --outDir ./edition-esnext --project tsconfig.json && ( test ! -d edition-esnext/source || ( mv edition-esnext/source edition-temp && rm -Rf edition-esnext && mv edition-temp edition-esnext ) ) && echo '{\"type\": \"commonjs\"}' > edition-esnext/package.json","our:compile:edition-node-esm":"tsc --module ESNext --target ESNext --outDir ./edition-node-esm --project tsconfig.json && ( test ! -d edition-node-esm/source || ( mv edition-node-esm/source edition-temp && rm -Rf edition-node-esm && mv edition-temp edition-node-esm ) ) && echo '{\"type\": \"module\"}' > edition-node-esm/package.json","our:compile:types":"tsc --project tsconfig.json --emitDeclarationOnly --declaration --declarationMap --declarationDir ./compiled-types && ( test ! -d compiled-types/source || ( mv compiled-types/source edition-temp && rm -Rf compiled-types && mv edition-temp compiled-types ) )","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz","our:meta:contributors":"update-contributors","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier","our:verify:directory":"valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write .","test":"node ./edition-esnext/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"deno":"edition-deno/index.ts","gitHead":"bddcaefa3e2036aa0e10ae24cace81f98153de72","readmeFilename":"README.md","_id":"getmac@5.15.0-next.1599201941.bddcaefa3e2036aa0e10ae24cace81f98153de72","_nodeVersion":"14.9.0","_npmVersion":"6.14.8","dist":{"shasum":"56bf9521aca1363c51b1a1c6a5c5f688e6ee3c91","size":9341,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-5.15.0-next.1599201941.bddcaefa3e2036aa0e10ae24cace81f98153de72.tgz","integrity":"sha512-o8/0AbshQq7UPyHL9S20tjueKDDJSkTlIDvk9Co2Nc3IRXTmPzD5/5swbQ63T26oA2lz3jv+HUwHz8ddFKxQ0Q=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_5.15.0-next.1599201941.bddcaefa3e2036aa0e10ae24cace81f98153de72_1599201943116_0.6279176434675016"},"_hasShrinkwrap":false,"publish_time":1599201943204,"_cnpm_publish_time":1599201943204,"_cnpmcore_publish_time":"2021-12-16T22:28:56.334Z"},"5.15.0-next.1599075178.13121e2c68ae85cf2c1eb5d80fd567e49042b503":{"name":"getmac","version":"5.15.0-next.1599075178.13121e2c68ae85cf2c1eb5d80fd567e49042b503","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["deno","deno-edition","deno-entry","denoland","export-default","getmac","ifconfig","ipconfig","mac","mac-address","node","typed","types","typescript"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","githubsponsors","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"githubSponsorsUsername":"balupton","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com","githubUsername":"bevry","githubRepository":"getmac","githubSlug":"bevry/getmac","npmPackageName":"getmac"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://github.com/balupton"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/Ogdentrod"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"Isaac Huang","url":"https://github.com/caasi"},{"name":"Jan Pilzer","url":"https://github.com/Hirse"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"zboszor","url":"https://github.com/zboszor"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=10"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["typescript","import"],"engines":false},{"description":"TypeScript compiled against ESNext for Node.js 10 || 12 || 13 || 14 with Require for modules","directory":"edition-esnext","entry":"index.js","tags":["javascript","esnext","require"],"engines":{"node":"10 || 12 || 13 || 14"}},{"description":"TypeScript compiled against ESNext for Node.js with Import for modules","directory":"edition-node-esm","entry":"index.js","tags":["javascript","import"],"engines":{"node":true,"browsers":false}},{"description":"TypeScript source code made to be compatible with Deno","directory":"edition-deno","entry":"index.ts","tags":["typescript","import","deno"],"engines":{"deno":true,"browsers":false}}],"types":"./compiled-types/","type":"module","main":"edition-esnext/index.js","exports":{"node":{"import":"./edition-node-esm/index.js","require":"./edition-esnext/index.js"}},"dependencies":{"@types/node":"^14.6.0"},"devDependencies":{"@bevry/update-contributors":"^1.15.0","@typescript-eslint/eslint-plugin":"^3.9.1","@typescript-eslint/parser":"^3.9.1","assert-helpers":"^7.0.1","eslint":"^7.7.0","eslint-config-bevry":"^3.19.0","eslint-config-prettier":"^6.11.0","eslint-plugin-prettier":"^3.1.4","kava":"^5.10.0","make-deno-edition":"^1.0.0","prettier":"^2.0.5","projectz":"^2.14.0","surge":"^0.21.6","typedoc":"^0.18.0","typescript":"^4.0.2","valid-directory":"^3.0.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:deno && npm run our:compile:edition-esnext && npm run our:compile:edition-node-esm && npm run our:compile:types","our:compile:deno":"make-deno-edition --attempt","our:compile:edition-esnext":"tsc --module commonjs --target ESNext --outDir ./edition-esnext --project tsconfig.json && ( test ! -d edition-esnext/source || ( mv edition-esnext/source edition-temp && rm -Rf edition-esnext && mv edition-temp edition-esnext ) ) && echo '{\"type\": \"commonjs\"}' > edition-esnext/package.json","our:compile:edition-node-esm":"tsc --module ESNext --target ESNext --outDir ./edition-node-esm --project tsconfig.json && ( test ! -d edition-node-esm/source || ( mv edition-node-esm/source edition-temp && rm -Rf edition-node-esm && mv edition-temp edition-node-esm ) ) && echo '{\"type\": \"module\"}' > edition-node-esm/package.json","our:compile:types":"tsc --project tsconfig.json --emitDeclarationOnly --declaration --declarationMap --declarationDir ./compiled-types && ( test ! -d compiled-types/source || ( mv compiled-types/source edition-temp && rm -Rf compiled-types && mv edition-temp compiled-types ) )","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz","our:meta:contributors":"update-contributors","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier","our:verify:directory":"valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write .","test":"node ./edition-esnext/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"deno":"edition-deno/index.ts","gitHead":"13121e2c68ae85cf2c1eb5d80fd567e49042b503","readmeFilename":"README.md","_id":"getmac@5.15.0-next.1599075178.13121e2c68ae85cf2c1eb5d80fd567e49042b503","_nodeVersion":"14.9.0","_npmVersion":"6.14.8","dist":{"shasum":"4b100cdc45752c684c947273101bc3d71f1ec6bd","size":9342,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-5.15.0-next.1599075178.13121e2c68ae85cf2c1eb5d80fd567e49042b503.tgz","integrity":"sha512-WEO3vdckSv2dZi8qfC0v2PdDFlRHYlUC8+IZCoVU7mRSJNXd/5/hsHG/qoaeOvt1XXR1Hm1joJad+T9GtzF0tQ=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_5.15.0-next.1599075178.13121e2c68ae85cf2c1eb5d80fd567e49042b503_1599075180269_0.31747638297036707"},"_hasShrinkwrap":false,"publish_time":1599075180376,"_cnpm_publish_time":1599075180376,"_cnpmcore_publish_time":"2021-12-16T22:28:56.538Z"},"5.15.0-next.1598780367.45de65512ca9a2329b02f2d62a6127cbf2f1f34c":{"name":"getmac","version":"5.15.0-next.1598780367.45de65512ca9a2329b02f2d62a6127cbf2f1f34c","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["deno","deno-edition","deno-entry","denoland","export-default","getmac","ifconfig","ipconfig","mac","mac-address","node","typed","types","typescript"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","githubsponsors","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"githubSponsorsUsername":"balupton","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com","githubUsername":"bevry","githubRepository":"getmac","githubSlug":"bevry/getmac","npmPackageName":"getmac"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://github.com/balupton"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/Ogdentrod"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"Isaac Huang","url":"https://github.com/caasi"},{"name":"Jan Pilzer","url":"https://github.com/Hirse"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"zboszor","url":"https://github.com/zboszor"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=10"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["typescript","import"],"engines":false},{"description":"TypeScript compiled against ESNext for Node.js 10 || 12 || 13 || 14 with Require for modules","directory":"edition-esnext","entry":"index.js","tags":["javascript","esnext","require"],"engines":{"node":"10 || 12 || 13 || 14"}},{"description":"TypeScript compiled against ESNext for Node.js with Import for modules","directory":"edition-node-esm","entry":"index.js","tags":["javascript","import"],"engines":{"node":true,"browsers":false}},{"description":"TypeScript source code made to be compatible with Deno","directory":"edition-deno","entry":"index.ts","tags":["typescript","import","deno"],"engines":{"deno":true,"browsers":false}}],"types":"./compiled-types/","type":"module","main":"edition-esnext/index.js","exports":{"node":{"import":"./edition-node-esm/index.js","require":"./edition-esnext/index.js"}},"dependencies":{"@types/node":"^14.6.0"},"devDependencies":{"@bevry/update-contributors":"^1.15.0","@typescript-eslint/eslint-plugin":"^3.9.1","@typescript-eslint/parser":"^3.9.1","assert-helpers":"^7.0.1","eslint":"^7.7.0","eslint-config-bevry":"^3.19.0","eslint-config-prettier":"^6.11.0","eslint-plugin-prettier":"^3.1.4","kava":"^5.10.0","make-deno-edition":"^1.0.0","prettier":"^2.0.5","projectz":"^2.14.0","surge":"^0.21.6","typedoc":"^0.18.0","typescript":"^3.9.7","valid-directory":"^3.0.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:deno && npm run our:compile:edition-esnext && npm run our:compile:edition-node-esm && npm run our:compile:types","our:compile:deno":"make-deno-edition --attempt","our:compile:edition-esnext":"tsc --module commonjs --target ESNext --outDir ./edition-esnext --project tsconfig.json && ( test ! -d edition-esnext/source || ( mv edition-esnext/source edition-temp && rm -Rf edition-esnext && mv edition-temp edition-esnext ) ) && echo '{\"type\": \"commonjs\"}' > edition-esnext/package.json","our:compile:edition-node-esm":"tsc --module ESNext --target ESNext --outDir ./edition-node-esm --project tsconfig.json && ( test ! -d edition-node-esm/source || ( mv edition-node-esm/source edition-temp && rm -Rf edition-node-esm && mv edition-temp edition-node-esm ) ) && echo '{\"type\": \"module\"}' > edition-node-esm/package.json","our:compile:types":"tsc --project tsconfig.json --emitDeclarationOnly --declaration --declarationMap --declarationDir ./compiled-types && ( test ! -d compiled-types/source || ( mv compiled-types/source edition-temp && rm -Rf compiled-types && mv edition-temp compiled-types ) )","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz","our:meta:contributors":"update-contributors","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier","our:verify:directory":"valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write .","test":"node ./edition-esnext/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"deno":"edition-deno/index.ts","gitHead":"45de65512ca9a2329b02f2d62a6127cbf2f1f34c","readmeFilename":"README.md","_id":"getmac@5.15.0-next.1598780367.45de65512ca9a2329b02f2d62a6127cbf2f1f34c","_nodeVersion":"14.9.0","_npmVersion":"6.14.8","dist":{"shasum":"81ebf5ba3f33437c3dcb082ed46f4f640b9bf3fa","size":9341,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-5.15.0-next.1598780367.45de65512ca9a2329b02f2d62a6127cbf2f1f34c.tgz","integrity":"sha512-M7TeYwzMBLp3JK7SjvK3D3eee3HYnpl9CDABXcA2ceSI5xLZm0BtbzdNwQfsaUa72CGF2j2cdgpOIBcuOg/npA=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_5.15.0-next.1598780367.45de65512ca9a2329b02f2d62a6127cbf2f1f34c_1598780368651_0.4136253017747"},"_hasShrinkwrap":false,"publish_time":1598780368786,"_cnpm_publish_time":1598780368786,"_cnpmcore_publish_time":"2021-12-16T22:28:56.756Z"},"5.15.0-next.1598187812.a94fbc574e92c19b8579d112b19d1ac50830d9e4":{"name":"getmac","version":"5.15.0-next.1598187812.a94fbc574e92c19b8579d112b19d1ac50830d9e4","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["deno","deno-edition","deno-entry","denoland","export-default","getmac","ifconfig","ipconfig","mac","mac-address","node","typed","types","typescript"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","githubsponsors","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"githubSponsorsUsername":"balupton","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com","githubUsername":"bevry","githubRepository":"getmac","githubSlug":"bevry/getmac","npmPackageName":"getmac"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://github.com/balupton"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/Ogdentrod"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"Isaac Huang","url":"https://github.com/caasi"},{"name":"Jan Pilzer","url":"https://github.com/Hirse"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"zboszor","url":"https://github.com/zboszor"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=10"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["typescript","import"],"engines":false},{"description":"TypeScript compiled against ESNext for Node.js 10 || 12 || 13 || 14 with Require for modules","directory":"edition-esnext","entry":"index.js","tags":["javascript","esnext","require"],"engines":{"node":"10 || 12 || 13 || 14"}},{"description":"TypeScript compiled against ESNext for Node.js with Import for modules","directory":"edition-node-esm","entry":"index.js","tags":["javascript","import"],"engines":{"node":true,"browsers":false}},{"description":"TypeScript source code made to be compatible with Deno","directory":"edition-deno","entry":"index.ts","tags":["typescript","import","deno"],"engines":{"deno":true,"browsers":false}}],"types":"./compiled-types/","type":"module","main":"edition-esnext/index.js","exports":{"node":{"import":"./edition-node-esm/index.js","require":"./edition-esnext/index.js"}},"dependencies":{"@types/node":"^14.6.0"},"devDependencies":{"@bevry/update-contributors":"^1.15.0","@typescript-eslint/eslint-plugin":"^3.9.1","@typescript-eslint/parser":"^3.9.1","assert-helpers":"^6.19.0","eslint":"^7.7.0","eslint-config-bevry":"^3.19.0","eslint-config-prettier":"^6.11.0","eslint-plugin-prettier":"^3.1.4","kava":"^5.10.0","make-deno-edition":"^1.0.0","prettier":"^2.0.5","projectz":"^2.14.0","surge":"^0.21.6","typedoc":"^0.18.0","typescript":"^3.9.7","valid-directory":"^3.0.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:deno && npm run our:compile:edition-esnext && npm run our:compile:edition-node-esm && npm run our:compile:types","our:compile:deno":"make-deno-edition --attempt","our:compile:edition-esnext":"tsc --module commonjs --target ESNext --outDir ./edition-esnext --project tsconfig.json && ( test ! -d edition-esnext/source || ( mv edition-esnext/source edition-temp && rm -Rf edition-esnext && mv edition-temp edition-esnext ) ) && echo '{\"type\": \"commonjs\"}' > edition-esnext/package.json","our:compile:edition-node-esm":"tsc --module ESNext --target ESNext --outDir ./edition-node-esm --project tsconfig.json && ( test ! -d edition-node-esm/source || ( mv edition-node-esm/source edition-temp && rm -Rf edition-node-esm && mv edition-temp edition-node-esm ) ) && echo '{\"type\": \"module\"}' > edition-node-esm/package.json","our:compile:types":"tsc --project tsconfig.json --emitDeclarationOnly --declaration --declarationMap --declarationDir ./compiled-types && ( test ! -d compiled-types/source || ( mv compiled-types/source edition-temp && rm -Rf compiled-types && mv edition-temp compiled-types ) )","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz","our:meta:contributors":"update-contributors","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier","our:verify:directory":"valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write .","test":"node ./edition-esnext/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"deno":"edition-deno/index.ts","gitHead":"a94fbc574e92c19b8579d112b19d1ac50830d9e4","readmeFilename":"README.md","_id":"getmac@5.15.0-next.1598187812.a94fbc574e92c19b8579d112b19d1ac50830d9e4","_nodeVersion":"14.8.0","_npmVersion":"6.14.7","dist":{"shasum":"a210eb6042c83757de8470d55ed3f87b0bd7d228","size":9340,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-5.15.0-next.1598187812.a94fbc574e92c19b8579d112b19d1ac50830d9e4.tgz","integrity":"sha512-IIYocRtieIOVvaOM96/KJUievP3/LgPow+mHVqsiMIG32WOUaQAqWjwf/kEMw9Zd0mSr/ALb9Z5V7RAyIyuWKw=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_5.15.0-next.1598187812.a94fbc574e92c19b8579d112b19d1ac50830d9e4_1598187813667_0.1336494547180349"},"_hasShrinkwrap":false,"publish_time":1598187813815,"_cnpm_publish_time":1598187813815,"_cnpmcore_publish_time":"2021-12-16T22:28:56.957Z"},"5.15.0-next.1597695762.b0c35fd6a7b6400d4d3fbb21d58107791d357954":{"name":"getmac","version":"5.15.0-next.1597695762.b0c35fd6a7b6400d4d3fbb21d58107791d357954","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["deno","deno-edition","deno-entry","denoland","export-default","getmac","ifconfig","ipconfig","mac","mac-address","node","typed","types","typescript"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","githubsponsors","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"githubSponsorsUsername":"balupton","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com","githubUsername":"bevry","githubRepository":"getmac","githubSlug":"bevry/getmac","npmPackageName":"getmac"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://github.com/balupton"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/Ogdentrod"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"Isaac Huang","url":"https://github.com/caasi"},{"name":"Jan Pilzer","url":"https://github.com/Hirse"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"zboszor","url":"https://github.com/zboszor"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=10"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["typescript","import"],"engines":false},{"description":"TypeScript compiled against ESNext for Node.js 10 || 12 || 13 || 14 with Require for modules","directory":"edition-esnext","entry":"index.js","tags":["javascript","esnext","require"],"engines":{"node":"10 || 12 || 13 || 14"}},{"description":"TypeScript compiled against ESNext for Node.js with Import for modules","directory":"edition-node-esm","entry":"index.js","tags":["javascript","import"],"engines":{"node":true,"browsers":false}},{"description":"TypeScript source code made to be compatible with Deno","directory":"edition-deno","entry":"index.ts","tags":["typescript","import","deno"],"engines":{"deno":true,"browsers":false}}],"types":"./compiled-types/","type":"module","main":"edition-esnext/index.js","exports":{"node":{"import":"./edition-node-esm/index.js","require":"./edition-esnext/index.js"}},"dependencies":{"@types/node":"^14.6.0"},"devDependencies":{"@bevry/update-contributors":"^1.15.0","@typescript-eslint/eslint-plugin":"^3.9.1","@typescript-eslint/parser":"^3.9.1","assert-helpers":"^6.19.0","eslint":"^7.7.0","eslint-config-bevry":"^3.19.0","eslint-config-prettier":"^6.11.0","eslint-plugin-prettier":"^3.1.4","kava":"^5.10.0","make-deno-edition":"^1.0.0","prettier":"^2.0.5","projectz":"^2.14.0","surge":"^0.21.6","typedoc":"^0.18.0","typescript":"^3.9.7","valid-directory":"^3.0.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:deno && npm run our:compile:edition-esnext && npm run our:compile:edition-node-esm && npm run our:compile:types","our:compile:deno":"make-deno-edition --attempt","our:compile:edition-esnext":"tsc --module commonjs --target ESNext --outDir ./edition-esnext --project tsconfig.json && ( test ! -d edition-esnext/source || ( mv edition-esnext/source edition-temp && rm -Rf edition-esnext && mv edition-temp edition-esnext ) ) && echo '{\"type\": \"commonjs\"}' > edition-esnext/package.json","our:compile:edition-node-esm":"tsc --module ESNext --target ESNext --outDir ./edition-node-esm --project tsconfig.json && ( test ! -d edition-node-esm/source || ( mv edition-node-esm/source edition-temp && rm -Rf edition-node-esm && mv edition-temp edition-node-esm ) ) && echo '{\"type\": \"module\"}' > edition-node-esm/package.json","our:compile:types":"tsc --project tsconfig.json --emitDeclarationOnly --declaration --declarationMap --declarationDir ./compiled-types && ( test ! -d compiled-types/source || ( mv compiled-types/source edition-temp && rm -Rf compiled-types && mv edition-temp compiled-types ) )","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz","our:meta:contributors":"update-contributors","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier","our:verify:directory":"valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write .","test":"node ./edition-esnext/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"deno":"edition-deno/index.ts","gitHead":"b0c35fd6a7b6400d4d3fbb21d58107791d357954","readmeFilename":"README.md","_id":"getmac@5.15.0-next.1597695762.b0c35fd6a7b6400d4d3fbb21d58107791d357954","_nodeVersion":"14.8.0","_npmVersion":"6.14.7","dist":{"shasum":"c301740dee7d973be10941519d5575529a9473e4","size":9342,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-5.15.0-next.1597695762.b0c35fd6a7b6400d4d3fbb21d58107791d357954.tgz","integrity":"sha512-qYQ1qMAhZHWP//BK8aJdLokbw8X4y85VlGJtUfOevjdjTW886PUNqmR/pkFnGhJ6wwc61QeJ15Tqsp+V7aCc0g=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_5.15.0-next.1597695762.b0c35fd6a7b6400d4d3fbb21d58107791d357954_1597695764273_0.6050076508544728"},"_hasShrinkwrap":false,"publish_time":1597695764560,"_cnpm_publish_time":1597695764560,"_cnpmcore_publish_time":"2021-12-16T22:28:57.196Z"},"5.15.0":{"name":"getmac","version":"5.15.0","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["deno","deno-edition","deno-entry","denoland","export-default","getmac","ifconfig","ipconfig","mac","mac-address","node","typed","types","typescript"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","githubsponsors","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"githubSponsorsUsername":"balupton","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com","githubUsername":"bevry","githubRepository":"getmac","githubSlug":"bevry/getmac","npmPackageName":"getmac"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://github.com/balupton"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/Ogdentrod"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"Isaac Huang","url":"https://github.com/caasi"},{"name":"Jan Pilzer","url":"https://github.com/Hirse"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"zboszor","url":"https://github.com/zboszor"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=10"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["typescript","import"],"engines":false},{"description":"TypeScript compiled against ESNext for Node.js 10 || 12 || 13 || 14 with Require for modules","directory":"edition-esnext","entry":"index.js","tags":["javascript","esnext","require"],"engines":{"node":"10 || 12 || 13 || 14"}},{"description":"TypeScript compiled against ESNext for Node.js with Import for modules","directory":"edition-node-esm","entry":"index.js","tags":["javascript","import"],"engines":{"node":true,"browsers":false}},{"description":"TypeScript source code made to be compatible with Deno","directory":"edition-deno","entry":"index.ts","tags":["typescript","import","deno"],"engines":{"deno":true,"browsers":false}}],"types":"./compiled-types/","type":"module","main":"edition-esnext/index.js","exports":{"node":{"import":"./edition-node-esm/index.js","require":"./edition-esnext/index.js"}},"dependencies":{"@types/node":"^14.6.0"},"devDependencies":{"@bevry/update-contributors":"^1.15.0","@typescript-eslint/eslint-plugin":"^3.9.1","@typescript-eslint/parser":"^3.9.1","assert-helpers":"^6.19.0","eslint":"^7.7.0","eslint-config-bevry":"^3.19.0","eslint-config-prettier":"^6.11.0","eslint-plugin-prettier":"^3.1.4","kava":"^5.10.0","make-deno-edition":"^1.0.0","prettier":"^2.0.5","projectz":"^2.14.0","surge":"^0.21.6","typedoc":"^0.18.0","typescript":"^3.9.7","valid-directory":"^3.0.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:deno && npm run our:compile:edition-esnext && npm run our:compile:edition-node-esm && npm run our:compile:types","our:compile:deno":"make-deno-edition --attempt","our:compile:edition-esnext":"tsc --module commonjs --target ESNext --outDir ./edition-esnext --project tsconfig.json && ( test ! -d edition-esnext/source || ( mv edition-esnext/source edition-temp && rm -Rf edition-esnext && mv edition-temp edition-esnext ) ) && echo '{\"type\": \"commonjs\"}' > edition-esnext/package.json","our:compile:edition-node-esm":"tsc --module ESNext --target ESNext --outDir ./edition-node-esm --project tsconfig.json && ( test ! -d edition-node-esm/source || ( mv edition-node-esm/source edition-temp && rm -Rf edition-node-esm && mv edition-temp edition-node-esm ) ) && echo '{\"type\": \"module\"}' > edition-node-esm/package.json","our:compile:types":"tsc --project tsconfig.json --emitDeclarationOnly --declaration --declarationMap --declarationDir ./compiled-types && ( test ! -d compiled-types/source || ( mv compiled-types/source edition-temp && rm -Rf compiled-types && mv edition-temp compiled-types ) )","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz","our:meta:contributors":"update-contributors","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier","our:verify:directory":"valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write .","test":"node ./edition-esnext/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"deno":"edition-deno/index.ts","gitHead":"deb40dca57df84889cd61df383270dff2063dc3c","_id":"getmac@5.15.0","_nodeVersion":"14.8.0","_npmVersion":"6.14.7","dist":{"shasum":"42052264cefaf87829f892eefaeb93ebe6c802e6","size":9297,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-5.15.0.tgz","integrity":"sha512-+XN9PwRDWkZ1xFaQR5GOAPDqlK+eNi5M0QBfqeeJvFJaDrwZzplYg1N8uoOZSB9RtDoPcG58Xq2dOYnbZ23N2Q=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_5.15.0_1597695691753_0.3246280530538006"},"_hasShrinkwrap":false,"publish_time":1597695691869,"_cnpm_publish_time":1597695691869,"_cnpmcore_publish_time":"2021-12-16T22:28:57.411Z"},"5.15.0-next.1597695619.deb40dca57df84889cd61df383270dff2063dc3c":{"name":"getmac","version":"5.15.0-next.1597695619.deb40dca57df84889cd61df383270dff2063dc3c","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["deno","deno-edition","deno-entry","denoland","export-default","getmac","ifconfig","ipconfig","mac","mac-address","node","typed","types","typescript"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","githubsponsors","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"githubSponsorsUsername":"balupton","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com","githubUsername":"bevry","githubRepository":"getmac","githubSlug":"bevry/getmac","npmPackageName":"getmac"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://github.com/balupton"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/Ogdentrod"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"Isaac Huang","url":"https://github.com/caasi"},{"name":"Jan Pilzer","url":"https://github.com/Hirse"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"zboszor","url":"https://github.com/zboszor"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=10"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["typescript","import"],"engines":false},{"description":"TypeScript compiled against ESNext for Node.js 10 || 12 || 13 || 14 with Require for modules","directory":"edition-esnext","entry":"index.js","tags":["javascript","esnext","require"],"engines":{"node":"10 || 12 || 13 || 14"}},{"description":"TypeScript compiled against ESNext for Node.js with Import for modules","directory":"edition-node-esm","entry":"index.js","tags":["javascript","import"],"engines":{"node":true,"browsers":false}},{"description":"TypeScript source code made to be compatible with Deno","directory":"edition-deno","entry":"index.ts","tags":["typescript","import","deno"],"engines":{"deno":true,"browsers":false}}],"types":"./compiled-types/","type":"module","main":"edition-esnext/index.js","exports":{"node":{"import":"./edition-node-esm/index.js","require":"./edition-esnext/index.js"}},"dependencies":{"@types/node":"^14.6.0"},"devDependencies":{"@bevry/update-contributors":"^1.15.0","@typescript-eslint/eslint-plugin":"^3.9.1","@typescript-eslint/parser":"^3.9.1","assert-helpers":"^6.19.0","eslint":"^7.7.0","eslint-config-bevry":"^3.19.0","eslint-config-prettier":"^6.11.0","eslint-plugin-prettier":"^3.1.4","kava":"^5.10.0","make-deno-edition":"^1.0.0","prettier":"^2.0.5","projectz":"^2.14.0","surge":"^0.21.6","typedoc":"^0.18.0","typescript":"^3.9.7","valid-directory":"^3.0.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:deno && npm run our:compile:edition-esnext && npm run our:compile:edition-node-esm && npm run our:compile:types","our:compile:deno":"make-deno-edition --attempt","our:compile:edition-esnext":"tsc --module commonjs --target ESNext --outDir ./edition-esnext --project tsconfig.json && ( test ! -d edition-esnext/source || ( mv edition-esnext/source edition-temp && rm -Rf edition-esnext && mv edition-temp edition-esnext ) ) && echo '{\"type\": \"commonjs\"}' > edition-esnext/package.json","our:compile:edition-node-esm":"tsc --module ESNext --target ESNext --outDir ./edition-node-esm --project tsconfig.json && ( test ! -d edition-node-esm/source || ( mv edition-node-esm/source edition-temp && rm -Rf edition-node-esm && mv edition-temp edition-node-esm ) ) && echo '{\"type\": \"module\"}' > edition-node-esm/package.json","our:compile:types":"tsc --project tsconfig.json --emitDeclarationOnly --declaration --declarationMap --declarationDir ./compiled-types && ( test ! -d compiled-types/source || ( mv compiled-types/source edition-temp && rm -Rf compiled-types && mv edition-temp compiled-types ) )","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz","our:meta:contributors":"update-contributors","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier","our:verify:directory":"valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write .","test":"node ./edition-esnext/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"deno":"edition-deno/index.ts","gitHead":"deb40dca57df84889cd61df383270dff2063dc3c","readmeFilename":"README.md","_id":"getmac@5.15.0-next.1597695619.deb40dca57df84889cd61df383270dff2063dc3c","_nodeVersion":"14.8.0","_npmVersion":"6.14.7","dist":{"shasum":"d7961a6daab64025536e72666aef1654e8d8d640","size":9340,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-5.15.0-next.1597695619.deb40dca57df84889cd61df383270dff2063dc3c.tgz","integrity":"sha512-x/3xXyzn4xbm7MpdNR6acsehlRLBuZvcwNMaYXIqKill4QYJ9zh6+95Y3fC2unOjvgoLqhNTimpwglvpsYIteg=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_5.15.0-next.1597695619.deb40dca57df84889cd61df383270dff2063dc3c_1597695620619_0.9782868287740332"},"_hasShrinkwrap":false,"publish_time":1597695620762,"_cnpm_publish_time":1597695620762,"_cnpmcore_publish_time":"2021-12-16T22:28:57.612Z"},"5.14.0":{"name":"getmac","version":"5.14.0","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["deno","deno-edition","deno-entry","denoland","export-default","getmac","ifconfig","ipconfig","mac","mac-address","node","typed","types","typescript"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","githubsponsors","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"githubSponsorsUsername":"balupton","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com","githubUsername":"bevry","githubRepository":"getmac","githubSlug":"bevry/getmac","npmPackageName":"getmac"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://github.com/balupton"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/Ogdentrod"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"Isaac Huang","url":"https://github.com/caasi"},{"name":"Jan Pilzer","url":"https://github.com/Hirse"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"zboszor","url":"https://github.com/zboszor"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=10"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["typescript","import"],"engines":false},{"description":"TypeScript compiled against ESNext for Node.js 10 || 12 || 13 || 14 with Require for modules","directory":"edition-esnext","entry":"index.js","tags":["javascript","esnext","require"],"engines":{"node":"10 || 12 || 13 || 14"}},{"description":"TypeScript compiled against ESNext for Node.js with Import for modules","directory":"edition-node-esm","entry":"index.js","tags":["javascript","import"],"engines":{"node":true,"browsers":false}},{"description":"TypeScript source code made to be compatible with Deno","directory":"edition-deno","entry":"index.ts","tags":["typescript","import","deno"],"engines":{"deno":true,"browsers":false}}],"types":"./compiled-types/","type":"module","main":"edition-esnext/index.js","exports":{"node":{"import":"./edition-node-esm/index.js","require":"./edition-esnext/index.js"}},"dependencies":{"@types/node":"^14.0.27"},"devDependencies":{"@bevry/update-contributors":"^1.14.0","@typescript-eslint/eslint-plugin":"^3.8.0","@typescript-eslint/parser":"^3.8.0","assert-helpers":"^6.19.0","eslint":"^7.6.0","eslint-config-bevry":"^3.18.0","eslint-config-prettier":"^6.11.0","eslint-plugin-prettier":"^3.1.4","kava":"^5.9.0","make-deno-edition":"^0.15.0","prettier":"^2.0.5","projectz":"^2.12.0","surge":"^0.21.6","typedoc":"^0.17.8","typescript":"^3.9.7","valid-directory":"^2.7.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:deno && npm run our:compile:edition-esnext && npm run our:compile:edition-node-esm && npm run our:compile:types","our:compile:deno":"make-deno-edition --attempt","our:compile:edition-esnext":"tsc --module commonjs --target ESNext --outDir ./edition-esnext --project tsconfig.json && ( test ! -d edition-esnext/source || ( mv edition-esnext/source edition-temp && rm -Rf edition-esnext && mv edition-temp edition-esnext ) ) && echo '{\"type\": \"commonjs\"}' > edition-esnext/package.json","our:compile:edition-node-esm":"tsc --module ESNext --target ESNext --outDir ./edition-node-esm --project tsconfig.json && ( test ! -d edition-node-esm/source || ( mv edition-node-esm/source edition-temp && rm -Rf edition-node-esm && mv edition-temp edition-node-esm ) ) && echo '{\"type\": \"module\"}' > edition-node-esm/package.json","our:compile:types":"tsc --project tsconfig.json --emitDeclarationOnly --declaration --declarationMap --declarationDir ./compiled-types && ( test ! -d compiled-types/source || ( mv compiled-types/source edition-temp && rm -Rf compiled-types && mv edition-temp compiled-types ) )","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz","our:meta:contributors":"update-contributors","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier","our:verify:directory":"valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write .","test":"node ./edition-esnext/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"deno":"edition-deno/index.ts","gitHead":"02b326042f0994dc55f507f1e01ce31fa5cbc04a","_id":"getmac@5.14.0","_nodeVersion":"14.7.0","_npmVersion":"6.14.7","dist":{"shasum":"a834cb8d494e825d81848e8d79c88ab28f7b59b0","size":9141,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-5.14.0.tgz","integrity":"sha512-zSyViv32NMd8xWttNfbJ+aYXvgEPc3Me9rvXatL+uEik9mUmXQrhLuTpSD/8TU0tSUu1dw0Z3dskwfanm7ieqQ=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_5.14.0_1596515883752_0.17477537320995973"},"_hasShrinkwrap":false,"publish_time":1596515883861,"_cnpm_publish_time":1596515883861,"_cnpmcore_publish_time":"2021-12-16T22:28:57.854Z"},"5.14.0-next.1596515798.02b326042f0994dc55f507f1e01ce31fa5cbc04a":{"name":"getmac","version":"5.14.0-next.1596515798.02b326042f0994dc55f507f1e01ce31fa5cbc04a","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["deno","deno-edition","deno-entry","denoland","export-default","getmac","ifconfig","ipconfig","mac","mac-address","node","typed","types","typescript"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","githubsponsors","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"githubSponsorsUsername":"balupton","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com","githubUsername":"bevry","githubRepository":"getmac","githubSlug":"bevry/getmac","npmPackageName":"getmac"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://github.com/balupton"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/Ogdentrod"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"Isaac Huang","url":"https://github.com/caasi"},{"name":"Jan Pilzer","url":"https://github.com/Hirse"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"zboszor","url":"https://github.com/zboszor"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=10"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["typescript","import"],"engines":false},{"description":"TypeScript compiled against ESNext for Node.js 10 || 12 || 13 || 14 with Require for modules","directory":"edition-esnext","entry":"index.js","tags":["javascript","esnext","require"],"engines":{"node":"10 || 12 || 13 || 14"}},{"description":"TypeScript compiled against ESNext for Node.js with Import for modules","directory":"edition-node-esm","entry":"index.js","tags":["javascript","import"],"engines":{"node":true,"browsers":false}},{"description":"TypeScript source code made to be compatible with Deno","directory":"edition-deno","entry":"index.ts","tags":["typescript","import","deno"],"engines":{"deno":true,"browsers":false}}],"types":"./compiled-types/","type":"module","main":"edition-esnext/index.js","exports":{"node":{"import":"./edition-node-esm/index.js","require":"./edition-esnext/index.js"}},"dependencies":{"@types/node":"^14.0.27"},"devDependencies":{"@bevry/update-contributors":"^1.14.0","@typescript-eslint/eslint-plugin":"^3.8.0","@typescript-eslint/parser":"^3.8.0","assert-helpers":"^6.19.0","eslint":"^7.6.0","eslint-config-bevry":"^3.18.0","eslint-config-prettier":"^6.11.0","eslint-plugin-prettier":"^3.1.4","kava":"^5.9.0","make-deno-edition":"^0.15.0","prettier":"^2.0.5","projectz":"^2.12.0","surge":"^0.21.6","typedoc":"^0.17.8","typescript":"^3.9.7","valid-directory":"^2.7.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:deno && npm run our:compile:edition-esnext && npm run our:compile:edition-node-esm && npm run our:compile:types","our:compile:deno":"make-deno-edition --attempt","our:compile:edition-esnext":"tsc --module commonjs --target ESNext --outDir ./edition-esnext --project tsconfig.json && ( test ! -d edition-esnext/source || ( mv edition-esnext/source edition-temp && rm -Rf edition-esnext && mv edition-temp edition-esnext ) ) && echo '{\"type\": \"commonjs\"}' > edition-esnext/package.json","our:compile:edition-node-esm":"tsc --module ESNext --target ESNext --outDir ./edition-node-esm --project tsconfig.json && ( test ! -d edition-node-esm/source || ( mv edition-node-esm/source edition-temp && rm -Rf edition-node-esm && mv edition-temp edition-node-esm ) ) && echo '{\"type\": \"module\"}' > edition-node-esm/package.json","our:compile:types":"tsc --project tsconfig.json --emitDeclarationOnly --declaration --declarationMap --declarationDir ./compiled-types && ( test ! -d compiled-types/source || ( mv compiled-types/source edition-temp && rm -Rf compiled-types && mv edition-temp compiled-types ) )","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz","our:meta:contributors":"update-contributors","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier","our:verify:directory":"valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write .","test":"node ./edition-esnext/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"deno":"edition-deno/index.ts","gitHead":"02b326042f0994dc55f507f1e01ce31fa5cbc04a","readmeFilename":"README.md","_id":"getmac@5.14.0-next.1596515798.02b326042f0994dc55f507f1e01ce31fa5cbc04a","_nodeVersion":"14.7.0","_npmVersion":"6.14.7","dist":{"shasum":"d081bc4d310099b93264dfba0268b55ef57395a5","size":9186,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-5.14.0-next.1596515798.02b326042f0994dc55f507f1e01ce31fa5cbc04a.tgz","integrity":"sha512-oXd6QeUP80DY65x/ycZFqFgrZzmA0c3Zz0rXJb2RLuQnSGro8BscuQwiI3pz3rVB0eJYkGHRjFZ4sqtZsMtpJg=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_5.14.0-next.1596515798.02b326042f0994dc55f507f1e01ce31fa5cbc04a_1596515799444_0.407984353387411"},"_hasShrinkwrap":false,"publish_time":1596515799582,"_cnpm_publish_time":1596515799582,"_cnpmcore_publish_time":"2021-12-16T22:28:58.061Z"},"5.13.0":{"name":"getmac","version":"5.13.0","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["deno","deno-edition","deno-entry","denoland","export-default","getmac","ifconfig","ipconfig","mac","mac-address","node","typed","types","typescript"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","githubsponsors","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"githubSponsorsUsername":"balupton","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com","githubUsername":"bevry","githubRepository":"getmac","githubSlug":"bevry/getmac","npmPackageName":"getmac"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://github.com/balupton"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/Ogdentrod"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"Isaac Huang","url":"https://github.com/caasi"},{"name":"Jan Pilzer","url":"https://github.com/Hirse"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"zboszor","url":"https://github.com/zboszor"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=10"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["typescript","import"],"engines":false},{"description":"TypeScript compiled against ESNext for Node.js 10 || 12 || 13 || 14 with Require for modules","directory":"edition-esnext","entry":"index.js","tags":["javascript","esnext","require"],"engines":{"node":"10 || 12 || 13 || 14"}},{"description":"TypeScript compiled against ESNext for Node.js with Import for modules","directory":"edition-node-esm","entry":"index.js","tags":["javascript","import"],"engines":{"node":true,"browsers":false}},{"description":"TypeScript source code made to be compatible with Deno","directory":"edition-deno","entry":"index.ts","tags":["typescript","import","deno"],"engines":{"deno":true,"browsers":false}}],"types":"./compiled-types/","type":"module","main":"edition-esnext/index.js","exports":{"node":{"import":"./edition-node-esm/index.js","require":"./edition-esnext/index.js"}},"dependencies":{"@types/node":"^14.0.24"},"devDependencies":{"@bevry/update-contributors":"^1.13.0","@typescript-eslint/eslint-plugin":"^3.7.0","@typescript-eslint/parser":"^3.7.0","assert-helpers":"^6.18.0","eslint":"^7.5.0","eslint-config-bevry":"^3.17.0","eslint-config-prettier":"^6.11.0","eslint-plugin-prettier":"^3.1.4","kava":"^5.8.0","make-deno-edition":"^0.14.0","prettier":"^2.0.5","projectz":"^2.11.0","surge":"^0.21.6","typedoc":"^0.17.8","typescript":"^3.9.7","valid-directory":"^2.6.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:deno && npm run our:compile:edition-esnext && npm run our:compile:edition-node-esm && npm run our:compile:types","our:compile:deno":"make-deno-edition --attempt","our:compile:edition-esnext":"tsc --module commonjs --target ESNext --outDir ./edition-esnext --project tsconfig.json && ( test ! -d edition-esnext/source || ( mv edition-esnext/source edition-temp && rm -Rf edition-esnext && mv edition-temp edition-esnext ) ) && echo '{\"type\": \"commonjs\"}' > edition-esnext/package.json","our:compile:edition-node-esm":"tsc --module ESNext --target ESNext --outDir ./edition-node-esm --project tsconfig.json && ( test ! -d edition-node-esm/source || ( mv edition-node-esm/source edition-temp && rm -Rf edition-node-esm && mv edition-temp edition-node-esm ) ) && echo '{\"type\": \"module\"}' > edition-node-esm/package.json","our:compile:types":"tsc --project tsconfig.json --emitDeclarationOnly --declaration --declarationMap --declarationDir ./compiled-types && ( test ! -d compiled-types/source || ( mv compiled-types/source edition-temp && rm -Rf compiled-types && mv edition-temp compiled-types ) )","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz","our:meta:contributors":"update-contributors","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier","our:verify:directory":"valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write .","test":"node ./edition-esnext/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"deno":"edition-deno/index.ts","gitHead":"212a289de4e5dfe2018e147688d2a80bc0931b7b","_id":"getmac@5.13.0","_nodeVersion":"14.5.0","_npmVersion":"6.14.5","dist":{"shasum":"4ec7582214c15129da368b1118c43033c986bd93","size":9111,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-5.13.0.tgz","integrity":"sha512-xvJE/9yz5fr9d5NAj7hnGl+RkGOTDjCrAdXdkMaXdQZ/kuosYMrmT5TOOb0wOX92pl9r4onSh4o1/jvjeCzcpw=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_5.13.0_1595354462525_0.19742374082227077"},"_hasShrinkwrap":false,"publish_time":1595354462641,"_cnpm_publish_time":1595354462641,"_cnpmcore_publish_time":"2021-12-16T22:28:58.310Z"},"5.13.0-next.1595354369.212a289de4e5dfe2018e147688d2a80bc0931b7b":{"name":"getmac","version":"5.13.0-next.1595354369.212a289de4e5dfe2018e147688d2a80bc0931b7b","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["deno","deno-edition","deno-entry","denoland","export-default","getmac","ifconfig","ipconfig","mac","mac-address","node","typed","types","typescript"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","githubsponsors","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"githubSponsorsUsername":"balupton","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com","githubUsername":"bevry","githubRepository":"getmac","githubSlug":"bevry/getmac","npmPackageName":"getmac"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://github.com/balupton"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/Ogdentrod"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"Isaac Huang","url":"https://github.com/caasi"},{"name":"Jan Pilzer","url":"https://github.com/Hirse"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"zboszor","url":"https://github.com/zboszor"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=10"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["typescript","import"],"engines":false},{"description":"TypeScript compiled against ESNext for Node.js 10 || 12 || 13 || 14 with Require for modules","directory":"edition-esnext","entry":"index.js","tags":["javascript","esnext","require"],"engines":{"node":"10 || 12 || 13 || 14"}},{"description":"TypeScript compiled against ESNext for Node.js with Import for modules","directory":"edition-node-esm","entry":"index.js","tags":["javascript","import"],"engines":{"node":true,"browsers":false}},{"description":"TypeScript source code made to be compatible with Deno","directory":"edition-deno","entry":"index.ts","tags":["typescript","import","deno"],"engines":{"deno":true,"browsers":false}}],"types":"./compiled-types/","type":"module","main":"edition-esnext/index.js","exports":{"node":{"import":"./edition-node-esm/index.js","require":"./edition-esnext/index.js"}},"dependencies":{"@types/node":"^14.0.24"},"devDependencies":{"@bevry/update-contributors":"^1.13.0","@typescript-eslint/eslint-plugin":"^3.7.0","@typescript-eslint/parser":"^3.7.0","assert-helpers":"^6.18.0","eslint":"^7.5.0","eslint-config-bevry":"^3.17.0","eslint-config-prettier":"^6.11.0","eslint-plugin-prettier":"^3.1.4","kava":"^5.8.0","make-deno-edition":"^0.14.0","prettier":"^2.0.5","projectz":"^2.11.0","surge":"^0.21.6","typedoc":"^0.17.8","typescript":"^3.9.7","valid-directory":"^2.6.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:deno && npm run our:compile:edition-esnext && npm run our:compile:edition-node-esm && npm run our:compile:types","our:compile:deno":"make-deno-edition --attempt","our:compile:edition-esnext":"tsc --module commonjs --target ESNext --outDir ./edition-esnext --project tsconfig.json && ( test ! -d edition-esnext/source || ( mv edition-esnext/source edition-temp && rm -Rf edition-esnext && mv edition-temp edition-esnext ) ) && echo '{\"type\": \"commonjs\"}' > edition-esnext/package.json","our:compile:edition-node-esm":"tsc --module ESNext --target ESNext --outDir ./edition-node-esm --project tsconfig.json && ( test ! -d edition-node-esm/source || ( mv edition-node-esm/source edition-temp && rm -Rf edition-node-esm && mv edition-temp edition-node-esm ) ) && echo '{\"type\": \"module\"}' > edition-node-esm/package.json","our:compile:types":"tsc --project tsconfig.json --emitDeclarationOnly --declaration --declarationMap --declarationDir ./compiled-types && ( test ! -d compiled-types/source || ( mv compiled-types/source edition-temp && rm -Rf compiled-types && mv edition-temp compiled-types ) )","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz","our:meta:contributors":"update-contributors","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier","our:verify:directory":"valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write .","test":"node ./edition-esnext/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"deno":"edition-deno/index.ts","gitHead":"212a289de4e5dfe2018e147688d2a80bc0931b7b","readmeFilename":"README.md","_id":"getmac@5.13.0-next.1595354369.212a289de4e5dfe2018e147688d2a80bc0931b7b","_nodeVersion":"14.5.0","_npmVersion":"6.14.5","dist":{"shasum":"05aef115c825a6c4a9f82b8c9b847169eaa14205","size":9159,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-5.13.0-next.1595354369.212a289de4e5dfe2018e147688d2a80bc0931b7b.tgz","integrity":"sha512-Y3pFfpk6yp272CCozY+tydUB7geLetK2zoKqUUsxlqkm8gUe85X0ufFgZpILHJnLr4rsk/7f0dS/e0/s69f35w=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_5.13.0-next.1595354369.212a289de4e5dfe2018e147688d2a80bc0931b7b_1595354370833_0.8402443382938276"},"_hasShrinkwrap":false,"publish_time":1595354370994,"_cnpm_publish_time":1595354370994,"_cnpmcore_publish_time":"2021-12-16T22:28:58.495Z"},"5.12.0":{"name":"getmac","version":"5.12.0","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["deno","deno-edition","deno-entry","denoland","export-default","getmac","ifconfig","ipconfig","mac","mac-address","node","typed","types","typescript"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","githubsponsors","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"githubSponsorsUsername":"balupton","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com","githubUsername":"bevry","githubRepository":"getmac","githubSlug":"bevry/getmac","npmPackageName":"getmac"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://github.com/balupton"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/Ogdentrod"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"Isaac Huang","url":"https://github.com/caasi"},{"name":"Jan Pilzer","url":"https://github.com/Hirse"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"zboszor","url":"https://github.com/zboszor"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=10"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["typescript","import"],"engines":false},{"description":"TypeScript compiled against ESNext for Node.js 10 || 12 || 13 || 14 with Require for modules","directory":"edition-esnext","entry":"index.js","tags":["javascript","esnext","require"],"engines":{"node":"10 || 12 || 13 || 14"}},{"description":"TypeScript compiled against ESNext for Node.js with Import for modules","directory":"edition-node-esm","entry":"index.js","tags":["javascript","import"],"engines":{"node":true,"browsers":false}},{"description":"TypeScript source code made to be compatible with Deno","directory":"edition-deno","entry":"index.ts","tags":["typescript","import","deno"],"engines":{"deno":true,"browsers":false}}],"types":"./compiled-types/","type":"module","main":"edition-esnext/index.js","exports":{"node":{"import":"./edition-node-esm/index.js","require":"./edition-esnext/index.js"}},"dependencies":{"@types/node":"^14.0.24"},"devDependencies":{"@bevry/update-contributors":"^1.13.0","@typescript-eslint/eslint-plugin":"^3.7.0","@typescript-eslint/parser":"^3.7.0","assert-helpers":"^6.17.0","eslint":"^7.5.0","eslint-config-bevry":"^3.16.0","eslint-config-prettier":"^6.11.0","eslint-plugin-prettier":"^3.1.4","kava":"^5.8.0","make-deno-edition":"^0.14.0","prettier":"^2.0.5","projectz":"^2.11.0","surge":"^0.21.6","typedoc":"^0.17.8","typescript":"^3.9.7","valid-directory":"^2.6.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:deno && npm run our:compile:edition-esnext && npm run our:compile:edition-node-esm && npm run our:compile:types","our:compile:deno":"make-deno-edition --attempt","our:compile:edition-esnext":"tsc --module commonjs --target ESNext --outDir ./edition-esnext --project tsconfig.json && ( test ! -d edition-esnext/source || ( mv edition-esnext/source edition-temp && rm -Rf edition-esnext && mv edition-temp edition-esnext ) ) && echo '{\"type\": \"commonjs\"}' > edition-esnext/package.json","our:compile:edition-node-esm":"tsc --module ESNext --target ESNext --outDir ./edition-node-esm --project tsconfig.json && ( test ! -d edition-node-esm/source || ( mv edition-node-esm/source edition-temp && rm -Rf edition-node-esm && mv edition-temp edition-node-esm ) ) && echo '{\"type\": \"module\"}' > edition-node-esm/package.json","our:compile:types":"tsc --project tsconfig.json --emitDeclarationOnly --declaration --declarationMap --declarationDir ./compiled-types && ( test ! -d compiled-types/source || ( mv compiled-types/source edition-temp && rm -Rf compiled-types && mv edition-temp compiled-types ) )","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz","our:meta:contributors":"update-contributors","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier","our:verify:directory":"valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write .","test":"node ./edition-esnext/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"deno":"edition-deno/index.ts","gitHead":"d8056d8349f4fac4e2d193f358c1953f3dc83793","_id":"getmac@5.12.0","_nodeVersion":"14.5.0","_npmVersion":"6.14.5","dist":{"shasum":"89c0880b64b7a492c8cd283bf53b03b374fd286a","size":9117,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-5.12.0.tgz","integrity":"sha512-laRBxpLg3vkruYMkO5LnobBu8iwATI5nkL2YOwBI77Y2JlzEKTQk0nYq6zyVoMwXbCi7S99AFNcywsfGa5UU+g=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_5.12.0_1595345916898_0.483207580115804"},"_hasShrinkwrap":false,"publish_time":1595345917007,"_cnpm_publish_time":1595345917007,"_cnpmcore_publish_time":"2021-12-16T22:28:59.484Z"},"5.12.0-next.1595345833.d8056d8349f4fac4e2d193f358c1953f3dc83793":{"name":"getmac","version":"5.12.0-next.1595345833.d8056d8349f4fac4e2d193f358c1953f3dc83793","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["deno","deno-edition","deno-entry","denoland","export-default","getmac","ifconfig","ipconfig","mac","mac-address","node","typed","types","typescript"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","githubsponsors","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"githubSponsorsUsername":"balupton","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com","githubUsername":"bevry","githubRepository":"getmac","githubSlug":"bevry/getmac","npmPackageName":"getmac"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://github.com/balupton"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/Ogdentrod"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"Isaac Huang","url":"https://github.com/caasi"},{"name":"Jan Pilzer","url":"https://github.com/Hirse"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"zboszor","url":"https://github.com/zboszor"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=10"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["typescript","import"],"engines":false},{"description":"TypeScript compiled against ESNext for Node.js 10 || 12 || 13 || 14 with Require for modules","directory":"edition-esnext","entry":"index.js","tags":["javascript","esnext","require"],"engines":{"node":"10 || 12 || 13 || 14"}},{"description":"TypeScript compiled against ESNext for Node.js with Import for modules","directory":"edition-node-esm","entry":"index.js","tags":["javascript","import"],"engines":{"node":true,"browsers":false}},{"description":"TypeScript source code made to be compatible with Deno","directory":"edition-deno","entry":"index.ts","tags":["typescript","import","deno"],"engines":{"deno":true,"browsers":false}}],"types":"./compiled-types/","type":"module","main":"edition-esnext/index.js","exports":{"node":{"import":"./edition-node-esm/index.js","require":"./edition-esnext/index.js"}},"dependencies":{"@types/node":"^14.0.24"},"devDependencies":{"@bevry/update-contributors":"^1.13.0","@typescript-eslint/eslint-plugin":"^3.7.0","@typescript-eslint/parser":"^3.7.0","assert-helpers":"^6.17.0","eslint":"^7.5.0","eslint-config-bevry":"^3.16.0","eslint-config-prettier":"^6.11.0","eslint-plugin-prettier":"^3.1.4","kava":"^5.8.0","make-deno-edition":"^0.14.0","prettier":"^2.0.5","projectz":"^2.11.0","surge":"^0.21.6","typedoc":"^0.17.8","typescript":"^3.9.7","valid-directory":"^2.6.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:deno && npm run our:compile:edition-esnext && npm run our:compile:edition-node-esm && npm run our:compile:types","our:compile:deno":"make-deno-edition --attempt","our:compile:edition-esnext":"tsc --module commonjs --target ESNext --outDir ./edition-esnext --project tsconfig.json && ( test ! -d edition-esnext/source || ( mv edition-esnext/source edition-temp && rm -Rf edition-esnext && mv edition-temp edition-esnext ) ) && echo '{\"type\": \"commonjs\"}' > edition-esnext/package.json","our:compile:edition-node-esm":"tsc --module ESNext --target ESNext --outDir ./edition-node-esm --project tsconfig.json && ( test ! -d edition-node-esm/source || ( mv edition-node-esm/source edition-temp && rm -Rf edition-node-esm && mv edition-temp edition-node-esm ) ) && echo '{\"type\": \"module\"}' > edition-node-esm/package.json","our:compile:types":"tsc --project tsconfig.json --emitDeclarationOnly --declaration --declarationMap --declarationDir ./compiled-types && ( test ! -d compiled-types/source || ( mv compiled-types/source edition-temp && rm -Rf compiled-types && mv edition-temp compiled-types ) )","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz","our:meta:contributors":"update-contributors","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier","our:verify:directory":"valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write .","test":"node ./edition-esnext/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"deno":"edition-deno/index.ts","gitHead":"d8056d8349f4fac4e2d193f358c1953f3dc83793","readmeFilename":"README.md","_id":"getmac@5.12.0-next.1595345833.d8056d8349f4fac4e2d193f358c1953f3dc83793","_nodeVersion":"14.5.0","_npmVersion":"6.14.5","dist":{"shasum":"c15f64ca86435465b60e7e11eb00f2f2df04f68b","size":9165,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-5.12.0-next.1595345833.d8056d8349f4fac4e2d193f358c1953f3dc83793.tgz","integrity":"sha512-2j3h5Ankhbot8IWkRO+TwrDs6vDzxtnSuDJheT8m5TKSWLaEC8RKCAMCoXCxvdE8MSBEgdXMJ9QsIH3kRaC+6Q=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_5.12.0-next.1595345833.d8056d8349f4fac4e2d193f358c1953f3dc83793_1595345834687_0.10359465375286869"},"_hasShrinkwrap":false,"publish_time":1595345834775,"_cnpm_publish_time":1595345834775,"_cnpmcore_publish_time":"2021-12-16T22:28:59.668Z"},"5.11.0":{"name":"getmac","version":"5.11.0","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["deno","deno-edition","deno-entry","denoland","export-default","getmac","ifconfig","ipconfig","mac","mac-address","node","typed","types","typescript"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","githubsponsors","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"githubSponsorsUsername":"balupton","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com","githubUsername":"bevry","githubRepository":"getmac","githubSlug":"bevry/getmac","npmPackageName":"getmac"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://github.com/balupton"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/Ogdentrod"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"Isaac Huang","url":"https://github.com/caasi"},{"name":"Jan Pilzer","url":"https://github.com/Hirse"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"zboszor","url":"https://github.com/zboszor"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=10"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["typescript","import"],"engines":false},{"description":"TypeScript compiled against ESNext for Node.js with Require for modules","directory":"edition-esnext","entry":"index.js","tags":["javascript","esnext","require"],"engines":{"node":"10 || 12 || 13 || 14"}},{"description":"TypeScript source code made to be compatible with Deno","directory":"edition-deno","entry":"index.ts","tags":["typescript","import","deno"],"engines":{"deno":true,"browsers":false}}],"types":"./compiled-types/","type":"commonjs","main":"edition-esnext/index.js","dependencies":{"@types/node":"^14.0.14"},"devDependencies":{"@bevry/update-contributors":"^1.12.0","@typescript-eslint/eslint-plugin":"^3.4.0","@typescript-eslint/parser":"^3.4.0","assert-helpers":"^6.13.0","eslint":"^7.3.1","eslint-config-bevry":"^3.13.0","eslint-config-prettier":"^6.11.0","eslint-plugin-prettier":"^3.1.4","kava":"^5.7.0","make-deno-edition":"^0.13.0","prettier":"^2.0.5","projectz":"^2.10.1","surge":"^0.21.3","typedoc":"^0.17.7","typescript":"^3.9.5","valid-directory":"^2.5.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"yarn run our:compile:deno && yarn run our:compile:edition-esnext && yarn run our:compile:types","our:compile:deno":"make-deno-edition --attempt","our:compile:edition-esnext":"tsc --module commonjs --target ESNext --outDir ./edition-esnext --project tsconfig.json && ( test ! -d edition-esnext/source || ( mv edition-esnext/source edition-temp && rm -Rf edition-esnext && mv edition-temp edition-esnext ) )","our:compile:types":"tsc --project tsconfig.json --emitDeclarationOnly --declaration --declarationMap --declarationDir ./compiled-types && ( test ! -d compiled-types/source || ( mv compiled-types/source edition-temp && rm -Rf compiled-types && mv edition-temp compiled-types ) )","our:deploy":"echo no need for this project","our:meta":"yarn run our:meta:contributors && yarn run our:meta:docs && yarn run our:meta:projectz","our:meta:contributors":"update-contributors","our:meta:docs":"yarn run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"yarn run our:release:prepare && yarn run our:release:check-changelog && yarn run our:release:check-dirty && yarn run our:release:tag && yarn run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"yarn run our:clean && yarn run our:compile && yarn run our:test && yarn run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"yarn run our:setup:install","our:setup:install":"/usr/local/bin/yarn install --ignore-engines","our:test":"yarn run our:verify && yarn test","our:verify":"yarn run our:verify:directory && yarn run our:verify:eslint && yarn run our:verify:prettier","our:verify:directory":"valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write .","test":"node ./edition-esnext/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"deno":"edition-deno/index.ts","gitHead":"f7989a25d7d616b9c4c56fe0d4a0d1d9e51871eb","_id":"getmac@5.11.0","_nodeVersion":"14.4.0","_npmVersion":"6.14.5","dist":{"shasum":"327b30efbe70868598eca8e68187fff1915b22c4","size":8787,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-5.11.0.tgz","integrity":"sha512-p3g41fJt9du5KKkIXaJm7bcUrwUxn8Jg/8AVBgUmBNdCCorczRJXHLqWSETJuib9dptwNuNcfbct/OoM/meiMA=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_5.11.0_1593054622359_0.2843950589457187"},"_hasShrinkwrap":false,"publish_time":1593054622467,"_cnpm_publish_time":1593054622467,"_cnpmcore_publish_time":"2021-12-16T22:28:59.919Z"},"5.11.0-next.1593054525.f7989a25d7d616b9c4c56fe0d4a0d1d9e51871eb":{"name":"getmac","version":"5.11.0-next.1593054525.f7989a25d7d616b9c4c56fe0d4a0d1d9e51871eb","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["deno","deno-edition","deno-entry","denoland","export-default","getmac","ifconfig","ipconfig","mac","mac-address","node","typed","types","typescript"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","githubsponsors","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"githubSponsorsUsername":"balupton","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com","githubUsername":"bevry","githubRepository":"getmac","githubSlug":"bevry/getmac","npmPackageName":"getmac"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://github.com/balupton"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/Ogdentrod"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"Isaac Huang","url":"https://github.com/caasi"},{"name":"Jan Pilzer","url":"https://github.com/Hirse"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"zboszor","url":"https://github.com/zboszor"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=10"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["typescript","import"],"engines":false},{"description":"TypeScript compiled against ESNext for Node.js with Require for modules","directory":"edition-esnext","entry":"index.js","tags":["javascript","esnext","require"],"engines":{"node":"10 || 12 || 13 || 14"}},{"description":"TypeScript source code made to be compatible with Deno","directory":"edition-deno","entry":"index.ts","tags":["typescript","import","deno"],"engines":{"deno":true,"browsers":false}}],"types":"./compiled-types/","type":"commonjs","main":"edition-esnext/index.js","dependencies":{"@types/node":"^14.0.14"},"devDependencies":{"@bevry/update-contributors":"^1.12.0","@typescript-eslint/eslint-plugin":"^3.4.0","@typescript-eslint/parser":"^3.4.0","assert-helpers":"^6.13.0","eslint":"^7.3.1","eslint-config-bevry":"^3.13.0","eslint-config-prettier":"^6.11.0","eslint-plugin-prettier":"^3.1.4","kava":"^5.7.0","make-deno-edition":"^0.13.0","prettier":"^2.0.5","projectz":"^2.10.1","surge":"^0.21.3","typedoc":"^0.17.7","typescript":"^3.9.5","valid-directory":"^2.5.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"yarn run our:compile:deno && yarn run our:compile:edition-esnext && yarn run our:compile:types","our:compile:deno":"make-deno-edition --attempt","our:compile:edition-esnext":"tsc --module commonjs --target ESNext --outDir ./edition-esnext --project tsconfig.json && ( test ! -d edition-esnext/source || ( mv edition-esnext/source edition-temp && rm -Rf edition-esnext && mv edition-temp edition-esnext ) )","our:compile:types":"tsc --project tsconfig.json --emitDeclarationOnly --declaration --declarationMap --declarationDir ./compiled-types && ( test ! -d compiled-types/source || ( mv compiled-types/source edition-temp && rm -Rf compiled-types && mv edition-temp compiled-types ) )","our:deploy":"echo no need for this project","our:meta":"yarn run our:meta:contributors && yarn run our:meta:docs && yarn run our:meta:projectz","our:meta:contributors":"update-contributors","our:meta:docs":"yarn run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"yarn run our:release:prepare && yarn run our:release:check-changelog && yarn run our:release:check-dirty && yarn run our:release:tag && yarn run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"yarn run our:clean && yarn run our:compile && yarn run our:test && yarn run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"yarn run our:setup:install","our:setup:install":"/usr/local/bin/yarn install --ignore-engines","our:test":"yarn run our:verify && yarn test","our:verify":"yarn run our:verify:directory && yarn run our:verify:eslint && yarn run our:verify:prettier","our:verify:directory":"valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write .","test":"node ./edition-esnext/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"deno":"edition-deno/index.ts","gitHead":"f7989a25d7d616b9c4c56fe0d4a0d1d9e51871eb","readmeFilename":"README.md","_id":"getmac@5.11.0-next.1593054525.f7989a25d7d616b9c4c56fe0d4a0d1d9e51871eb","_nodeVersion":"14.4.0","_npmVersion":"6.14.5","dist":{"shasum":"3dc5f61d939534d45c1daa1e19424e8248e866ad","size":8840,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-5.11.0-next.1593054525.f7989a25d7d616b9c4c56fe0d4a0d1d9e51871eb.tgz","integrity":"sha512-EyM7Y1LmYo34nALBCZcoHJkgXo9GfzG2H5F4TPQAAaDpN8tmZ+06csExoL3NFPDnOnOvOJAqUYuNh5n8P4mAbw=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_5.11.0-next.1593054525.f7989a25d7d616b9c4c56fe0d4a0d1d9e51871eb_1593054526568_0.8463958873081434"},"_hasShrinkwrap":false,"publish_time":1593054526748,"_cnpm_publish_time":1593054526748,"_cnpmcore_publish_time":"2021-12-16T22:29:00.172Z"},"5.10.0":{"name":"getmac","version":"5.10.0","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["export-default","getmac","ifconfig","ipconfig","mac","mac-address","node","typed","types","typescript"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","githubsponsors","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"githubSponsorsUsername":"balupton","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com","githubUsername":"bevry","githubRepository":"getmac","githubSlug":"bevry/getmac","npmPackageName":"getmac"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://github.com/balupton"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/Ogdentrod"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"Isaac Huang","url":"https://github.com/caasi"},{"name":"Jan Pilzer","url":"https://github.com/Hirse"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"zboszor","url":"https://github.com/zboszor"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=10"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["typescript","import"],"engines":false},{"description":"TypeScript compiled against ESNext for Node.js with Require for modules","directory":"edition-esnext","entry":"index.js","tags":["javascript","esnext","require"],"engines":{"node":"10 || 12 || 13 || 14"}}],"types":"./compiled-types/","type":"commonjs","main":"edition-esnext/index.js","dependencies":{"@types/node":"^14.0.13"},"devDependencies":{"@bevry/update-contributors":"^1.9.0","@typescript-eslint/eslint-plugin":"^3.3.0","@typescript-eslint/parser":"^3.3.0","assert-helpers":"^6.8.0","eslint":"^7.3.0","eslint-config-bevry":"^3.8.0","eslint-config-prettier":"^6.7.0","eslint-plugin-prettier":"^3.1.4","kava":"^5.7.0","make-deno-edition":"^0.9.1","prettier":"^2.0.5","projectz":"^2.9.0","surge":"^0.21.3","typedoc":"^0.17.7","typescript":"^3.9.5","valid-directory":"^2.5.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"yarn run our:compile:deno && yarn run our:compile:edition-esnext && yarn run our:compile:types","our:compile:deno":"make-deno-edition --attempt","our:compile:edition-esnext":"tsc --module commonjs --target ESNext --outDir ./edition-esnext --project tsconfig.json && ( test ! -d edition-esnext/source || ( mv edition-esnext/source edition-temp && rm -Rf edition-esnext && mv edition-temp edition-esnext ) )","our:compile:types":"tsc --project tsconfig.json --emitDeclarationOnly --declaration --declarationMap --declarationDir ./compiled-types && ( test ! -d compiled-types/source || ( mv compiled-types/source edition-temp && rm -Rf compiled-types && mv edition-temp compiled-types ) )","our:deploy":"echo no need for this project","our:meta":"yarn run our:meta:contributors && yarn run our:meta:docs && yarn run our:meta:projectz","our:meta:contributors":"update-contributors","our:meta:docs":"yarn run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"yarn run our:release:prepare && yarn run our:release:check-changelog && yarn run our:release:check-dirty && yarn run our:release:tag && yarn run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"yarn run our:clean && yarn run our:compile && yarn run our:test && yarn run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"yarn run our:setup:install","our:setup:install":"/usr/local/bin/yarn install --ignore-engines","our:test":"yarn run our:verify && yarn test","our:verify":"yarn run our:verify:directory && yarn run our:verify:eslint && yarn run our:verify:prettier","our:verify:directory":"valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write .","test":"node ./edition-esnext/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"gitHead":"289a5eef95cfd9ab9cf5ab218809d0a168aaf385","_id":"getmac@5.10.0","_nodeVersion":"14.4.0","_npmVersion":"6.14.5","dist":{"shasum":"5e176324f1b422ae07b9fc8b1b9381e5ae7fedf4","size":8599,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-5.10.0.tgz","integrity":"sha512-DzBdL99EiNZU3C8iRvWlwu69CvqEG5v8lPM4GSeOdhRF33UcIqcQ1Q9TLA63oUfX2G96r6g7bTjWlJneC+VWuw=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_5.10.0_1592740869193_0.613746637881259"},"_hasShrinkwrap":false,"publish_time":1592740869374,"_cnpm_publish_time":1592740869374,"_cnpmcore_publish_time":"2021-12-16T22:29:00.381Z"},"5.10.0-next.1592740799.289a5eef95cfd9ab9cf5ab218809d0a168aaf385":{"name":"getmac","version":"5.10.0-next.1592740799.289a5eef95cfd9ab9cf5ab218809d0a168aaf385","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["export-default","getmac","ifconfig","ipconfig","mac","mac-address","node","typed","types","typescript"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","githubsponsors","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"githubSponsorsUsername":"balupton","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com","githubUsername":"bevry","githubRepository":"getmac","githubSlug":"bevry/getmac","npmPackageName":"getmac"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://github.com/balupton"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/Ogdentrod"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"Isaac Huang","url":"https://github.com/caasi"},{"name":"Jan Pilzer","url":"https://github.com/Hirse"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"zboszor","url":"https://github.com/zboszor"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=10"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["typescript","import"],"engines":false},{"description":"TypeScript compiled against ESNext for Node.js with Require for modules","directory":"edition-esnext","entry":"index.js","tags":["javascript","esnext","require"],"engines":{"node":"10 || 12 || 13 || 14"}}],"types":"./compiled-types/","type":"commonjs","main":"edition-esnext/index.js","dependencies":{"@types/node":"^14.0.13"},"devDependencies":{"@bevry/update-contributors":"^1.9.0","@typescript-eslint/eslint-plugin":"^3.3.0","@typescript-eslint/parser":"^3.3.0","assert-helpers":"^6.8.0","eslint":"^7.3.0","eslint-config-bevry":"^3.8.0","eslint-config-prettier":"^6.7.0","eslint-plugin-prettier":"^3.1.4","kava":"^5.7.0","make-deno-edition":"^0.9.1","prettier":"^2.0.5","projectz":"^2.9.0","surge":"^0.21.3","typedoc":"^0.17.7","typescript":"^3.9.5","valid-directory":"^2.5.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"yarn run our:compile:deno && yarn run our:compile:edition-esnext && yarn run our:compile:types","our:compile:deno":"make-deno-edition --attempt","our:compile:edition-esnext":"tsc --module commonjs --target ESNext --outDir ./edition-esnext --project tsconfig.json && ( test ! -d edition-esnext/source || ( mv edition-esnext/source edition-temp && rm -Rf edition-esnext && mv edition-temp edition-esnext ) )","our:compile:types":"tsc --project tsconfig.json --emitDeclarationOnly --declaration --declarationMap --declarationDir ./compiled-types && ( test ! -d compiled-types/source || ( mv compiled-types/source edition-temp && rm -Rf compiled-types && mv edition-temp compiled-types ) )","our:deploy":"echo no need for this project","our:meta":"yarn run our:meta:contributors && yarn run our:meta:docs && yarn run our:meta:projectz","our:meta:contributors":"update-contributors","our:meta:docs":"yarn run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"yarn run our:release:prepare && yarn run our:release:check-changelog && yarn run our:release:check-dirty && yarn run our:release:tag && yarn run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"yarn run our:clean && yarn run our:compile && yarn run our:test && yarn run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"yarn run our:setup:install","our:setup:install":"/usr/local/bin/yarn install --ignore-engines","our:test":"yarn run our:verify && yarn test","our:verify":"yarn run our:verify:directory && yarn run our:verify:eslint && yarn run our:verify:prettier","our:verify:directory":"valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write .","test":"node ./edition-esnext/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"gitHead":"289a5eef95cfd9ab9cf5ab218809d0a168aaf385","readmeFilename":"README.md","_id":"getmac@5.10.0-next.1592740799.289a5eef95cfd9ab9cf5ab218809d0a168aaf385","_nodeVersion":"14.4.0","_npmVersion":"6.14.5","dist":{"shasum":"e8e4931c7093a8fe5687057343051ac48216474e","size":8652,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-5.10.0-next.1592740799.289a5eef95cfd9ab9cf5ab218809d0a168aaf385.tgz","integrity":"sha512-+ASoEbXnzcpyamPXcOL4pfOH5i4Tnrp9fpuSdf+wIKLcjCThHjhV9VNww0dLKBe79tAAekaQTcq1TUs+dFvrlg=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_5.10.0-next.1592740799.289a5eef95cfd9ab9cf5ab218809d0a168aaf385_1592740800424_0.2115116971901898"},"_hasShrinkwrap":false,"publish_time":1592740800551,"_cnpm_publish_time":1592740800551,"_cnpmcore_publish_time":"2021-12-16T22:29:00.628Z"},"5.9.0":{"name":"getmac","version":"5.9.0","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["export-default","getmac","ifconfig","ipconfig","mac","mac-address","node","typed","types","typescript"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","githubsponsors","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"githubSponsorsUsername":"balupton","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com","githubUsername":"bevry","githubRepository":"getmac","githubSlug":"bevry/getmac","npmPackageName":"getmac"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://github.com/balupton"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/Ogdentrod"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"Isaac Huang","url":"https://github.com/caasi"},{"name":"Jan Pilzer","url":"https://github.com/Hirse"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"zboszor","url":"https://github.com/zboszor"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=10"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["typescript","import"],"engines":false},{"description":"TypeScript compiled against ESNext for Node.js with Require for modules","directory":"edition-esnext","entry":"index.js","tags":["javascript","esnext","require"],"engines":{"node":"10 || 12 || 13 || 14"}}],"types":"./compiled-types/","type":"commonjs","main":"edition-esnext/index.js","dependencies":{"@types/node":"^14.0.13","editions":"3.5.0"},"devDependencies":{"@bevry/update-contributors":"1.9.0","@typescript-eslint/eslint-plugin":"^3.3.0","@typescript-eslint/parser":"^3.3.0","assert-helpers":"6.8.0","eslint":"^7.3.0","eslint-config-bevry":"3.8.0","eslint-config-prettier":"^6.7.0","eslint-plugin-prettier":"^3.1.4","kava":"5.4.0","make-deno-edition":"0.9.1","prettier":"^2.0.5","projectz":"2.5.0","surge":"^0.21.3","typedoc":"^0.17.7","typescript":"^3.9.5","valid-directory":"2.2.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"yarn run our:compile:deno && yarn run our:compile:edition-esnext && yarn run our:compile:types","our:compile:deno":"make-deno-edition --attempt","our:compile:edition-esnext":"tsc --module commonjs --target ESNext --outDir ./edition-esnext --project tsconfig.json && ( test ! -d edition-esnext/source || ( mv edition-esnext/source edition-temp && rm -Rf edition-esnext && mv edition-temp edition-esnext ) )","our:compile:types":"tsc --project tsconfig.json --emitDeclarationOnly --declaration --declarationMap --declarationDir ./compiled-types && ( test ! -d compiled-types/source || ( mv compiled-types/source edition-temp && rm -Rf compiled-types && mv edition-temp compiled-types ) )","our:deploy":"echo no need for this project","our:meta":"yarn run our:meta:contributors && yarn run our:meta:docs && yarn run our:meta:projectz","our:meta:contributors":"update-contributors","our:meta:docs":"yarn run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"yarn run our:release:prepare && yarn run our:release:check-changelog && yarn run our:release:check-dirty && yarn run our:release:tag && yarn run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"yarn run our:clean && yarn run our:compile && yarn run our:test && yarn run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"yarn run our:setup:install","our:setup:install":"/usr/local/bin/yarn install --ignore-engines","our:test":"yarn run our:verify && yarn test","our:verify":"yarn run our:verify:directory && yarn run our:verify:eslint && yarn run our:verify:prettier","our:verify:directory":"valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write .","test":"node ./edition-esnext/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"gitHead":"6ebd187083eaa5c29a0a068a0198416b68d6235a","_id":"getmac@5.9.0","_nodeVersion":"14.4.0","_npmVersion":"6.14.5","dist":{"shasum":"91e81254c6bcceed7315f705c6a3ca351577990e","size":8609,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-5.9.0.tgz","integrity":"sha512-r7ZR3aVJhW8Ng03ujH1VDQJpUooaW4lrfMspN0sAXhKh+a19FjDqU+cNksfAnfUaqfJCu7eNxvKG7Ssj3+9c8Q=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_5.9.0_1592693873336_0.06195740490904167"},"_hasShrinkwrap":false,"publish_time":1592693873512,"_cnpm_publish_time":1592693873512,"_cnpmcore_publish_time":"2021-12-16T22:29:00.821Z"},"5.9.0-next.1592693796.6ebd187083eaa5c29a0a068a0198416b68d6235a":{"name":"getmac","version":"5.9.0-next.1592693796.6ebd187083eaa5c29a0a068a0198416b68d6235a","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["export-default","getmac","ifconfig","ipconfig","mac","mac-address","node","typed","types","typescript"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","githubsponsors","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"githubSponsorsUsername":"balupton","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com","githubUsername":"bevry","githubRepository":"getmac","githubSlug":"bevry/getmac","npmPackageName":"getmac"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://github.com/balupton"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/Ogdentrod"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"Isaac Huang","url":"https://github.com/caasi"},{"name":"Jan Pilzer","url":"https://github.com/Hirse"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"zboszor","url":"https://github.com/zboszor"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=10"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["typescript","import"],"engines":false},{"description":"TypeScript compiled against ESNext for Node.js with Require for modules","directory":"edition-esnext","entry":"index.js","tags":["javascript","esnext","require"],"engines":{"node":"10 || 12 || 13 || 14"}}],"types":"./compiled-types/","type":"commonjs","main":"edition-esnext/index.js","dependencies":{"@types/node":"^14.0.13","editions":"3.5.0"},"devDependencies":{"@bevry/update-contributors":"1.9.0","@typescript-eslint/eslint-plugin":"^3.3.0","@typescript-eslint/parser":"^3.3.0","assert-helpers":"6.8.0","eslint":"^7.3.0","eslint-config-bevry":"3.8.0","eslint-config-prettier":"^6.7.0","eslint-plugin-prettier":"^3.1.4","kava":"5.4.0","make-deno-edition":"0.9.1","prettier":"^2.0.5","projectz":"2.5.0","surge":"^0.21.3","typedoc":"^0.17.7","typescript":"^3.9.5","valid-directory":"2.2.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"yarn run our:compile:deno && yarn run our:compile:edition-esnext && yarn run our:compile:types","our:compile:deno":"make-deno-edition --attempt","our:compile:edition-esnext":"tsc --module commonjs --target ESNext --outDir ./edition-esnext --project tsconfig.json && ( test ! -d edition-esnext/source || ( mv edition-esnext/source edition-temp && rm -Rf edition-esnext && mv edition-temp edition-esnext ) )","our:compile:types":"tsc --project tsconfig.json --emitDeclarationOnly --declaration --declarationMap --declarationDir ./compiled-types && ( test ! -d compiled-types/source || ( mv compiled-types/source edition-temp && rm -Rf compiled-types && mv edition-temp compiled-types ) )","our:deploy":"echo no need for this project","our:meta":"yarn run our:meta:contributors && yarn run our:meta:docs && yarn run our:meta:projectz","our:meta:contributors":"update-contributors","our:meta:docs":"yarn run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"yarn run our:release:prepare && yarn run our:release:check-changelog && yarn run our:release:check-dirty && yarn run our:release:tag && yarn run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"yarn run our:clean && yarn run our:compile && yarn run our:test && yarn run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"yarn run our:setup:install","our:setup:install":"/usr/local/bin/yarn install --ignore-engines","our:test":"yarn run our:verify && yarn test","our:verify":"yarn run our:verify:directory && yarn run our:verify:eslint && yarn run our:verify:prettier","our:verify:directory":"valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write .","test":"node ./edition-esnext/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"gitHead":"6ebd187083eaa5c29a0a068a0198416b68d6235a","readmeFilename":"README.md","_id":"getmac@5.9.0-next.1592693796.6ebd187083eaa5c29a0a068a0198416b68d6235a","_nodeVersion":"14.4.0","_npmVersion":"6.14.5","dist":{"shasum":"ebecca34159e863dd3176b88bee000a7514ef735","size":8661,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-5.9.0-next.1592693796.6ebd187083eaa5c29a0a068a0198416b68d6235a.tgz","integrity":"sha512-RSmp7MFZbY9sf+RxIV75NuijjDeyPN2uJrpN5C97e9JqSbCXj4iajdpUEdtsV8UEeNfConh7AAS9PJxu4Fc9sA=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_5.9.0-next.1592693796.6ebd187083eaa5c29a0a068a0198416b68d6235a_1592693797397_0.6347789424997661"},"_hasShrinkwrap":false,"publish_time":1592693797549,"_cnpm_publish_time":1592693797549,"_cnpmcore_publish_time":"2021-12-16T22:29:01.019Z"},"5.8.0":{"name":"getmac","version":"5.8.0","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["export-default","getmac","ifconfig","ipconfig","mac","mac-address","node","typed","types","typescript"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","githubsponsors","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"githubSponsorsUsername":"balupton","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com","githubUsername":"bevry","githubRepository":"getmac","githubSlug":"bevry/getmac","npmPackageName":"getmac"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://github.com/balupton"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/Ogdentrod"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"Isaac Huang","url":"https://github.com/caasi"},{"name":"Jan Pilzer","url":"https://github.com/Hirse"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"zboszor","url":"https://github.com/zboszor"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=10"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["typescript","import"],"engines":false},{"description":"TypeScript compiled against ESNext for Node.js with Require for modules","directory":"edition-esnext","entry":"index.js","tags":["javascript","esnext","require"],"engines":{"node":"10 || 12 || 13 || 14"}}],"types":"./compiled-types/","type":"commonjs","main":"edition-esnext/index.js","dependencies":{"@types/node":"^14.0.13","@bevry/update-contributors":"^1.10.0","@typescript-eslint/eslint-plugin":"^3.3.0","@typescript-eslint/parser":"^3.3.0","assert-helpers":"^6.10.0","eslint":"^7.3.0","eslint-config-bevry":"^3.10.0","eslint-config-prettier":"^6.11.0","eslint-plugin-prettier":"^3.1.4","kava":"^5.5.0","make-deno-edition":"^0.8.0","prettier":"^2.0.5","projectz":"^2.7.0","surge":"^0.21.3","typedoc":"^0.17.7","typescript":"^3.9.5","valid-directory":"^2.4.0"},"devDependencies":{"@bevry/update-contributors":"^1.10.0","@typescript-eslint/eslint-plugin":"^3.3.0","@typescript-eslint/parser":"^3.3.0","assert-helpers":"^6.10.0","eslint":"^7.3.0","eslint-config-bevry":"^3.10.0","eslint-config-prettier":"^6.11.0","eslint-plugin-prettier":"^3.1.4","kava":"^5.5.0","make-deno-edition":"^0.8.0","prettier":"^2.0.5","projectz":"^2.7.0","surge":"^0.21.3","typedoc":"^0.17.7","typescript":"^3.9.5","valid-directory":"^2.4.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:deno && npm run our:compile:edition-esnext && npm run our:compile:types","our:compile:deno":"make-deno-edition --attempt","our:compile:edition-esnext":"tsc --module commonjs --target ESNext --outDir ./edition-esnext --project tsconfig.json && ( test ! -d edition-esnext/source || ( mv edition-esnext/source edition-temp && rm -Rf edition-esnext && mv edition-temp edition-esnext ) )","our:compile:types":"tsc --project tsconfig.json --emitDeclarationOnly --declaration --declarationMap --declarationDir ./compiled-types && ( test ! -d compiled-types/source || ( mv compiled-types/source edition-temp && rm -Rf compiled-types && mv edition-temp compiled-types ) )","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz","our:meta:contributors":"update-contributors","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier","our:verify:directory":"valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write .","test":"node ./edition-esnext/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"gitHead":"b424af24b21e20454f4346fcd5587728ed7383e2","_id":"getmac@5.8.0","_nodeVersion":"14.4.0","_npmVersion":"6.14.5","dist":{"shasum":"d824cb1c8e7ac4e6c216aca263273151a22a854a","size":8582,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-5.8.0.tgz","integrity":"sha512-7qhmNcl654wCvn4mi+rIXRyI6+DBTjZ7dPk4eHWbu4Iaqzb3tCVuOJzPfBXxa18DvCt4iOT+UhGQRhipSzUftg=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_5.8.0_1592613452529_0.545033413821401"},"_hasShrinkwrap":false,"publish_time":1592613452677,"_cnpm_publish_time":1592613452677,"_cnpmcore_publish_time":"2021-12-16T22:29:01.236Z"},"5.8.0-next.1592613371.b424af24b21e20454f4346fcd5587728ed7383e2":{"name":"getmac","version":"5.8.0-next.1592613371.b424af24b21e20454f4346fcd5587728ed7383e2","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["export-default","getmac","ifconfig","ipconfig","mac","mac-address","node","typed","types","typescript"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","githubsponsors","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"githubSponsorsUsername":"balupton","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com","githubUsername":"bevry","githubRepository":"getmac","githubSlug":"bevry/getmac","npmPackageName":"getmac"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://github.com/balupton"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/Ogdentrod"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"Isaac Huang","url":"https://github.com/caasi"},{"name":"Jan Pilzer","url":"https://github.com/Hirse"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"zboszor","url":"https://github.com/zboszor"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=10"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["typescript","import"],"engines":false},{"description":"TypeScript compiled against ESNext for Node.js with Require for modules","directory":"edition-esnext","entry":"index.js","tags":["javascript","esnext","require"],"engines":{"node":"10 || 12 || 13 || 14"}}],"types":"./compiled-types/","type":"commonjs","main":"edition-esnext/index.js","dependencies":{"@types/node":"^14.0.13","@bevry/update-contributors":"^1.10.0","@typescript-eslint/eslint-plugin":"^3.3.0","@typescript-eslint/parser":"^3.3.0","assert-helpers":"^6.10.0","eslint":"^7.3.0","eslint-config-bevry":"^3.10.0","eslint-config-prettier":"^6.11.0","eslint-plugin-prettier":"^3.1.4","kava":"^5.5.0","make-deno-edition":"^0.8.0","prettier":"^2.0.5","projectz":"^2.7.0","surge":"^0.21.3","typedoc":"^0.17.7","typescript":"^3.9.5","valid-directory":"^2.4.0"},"devDependencies":{"@bevry/update-contributors":"^1.10.0","@typescript-eslint/eslint-plugin":"^3.3.0","@typescript-eslint/parser":"^3.3.0","assert-helpers":"^6.10.0","eslint":"^7.3.0","eslint-config-bevry":"^3.10.0","eslint-config-prettier":"^6.11.0","eslint-plugin-prettier":"^3.1.4","kava":"^5.5.0","make-deno-edition":"^0.8.0","prettier":"^2.0.5","projectz":"^2.7.0","surge":"^0.21.3","typedoc":"^0.17.7","typescript":"^3.9.5","valid-directory":"^2.4.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:deno && npm run our:compile:edition-esnext && npm run our:compile:types","our:compile:deno":"make-deno-edition --attempt","our:compile:edition-esnext":"tsc --module commonjs --target ESNext --outDir ./edition-esnext --project tsconfig.json && ( test ! -d edition-esnext/source || ( mv edition-esnext/source edition-temp && rm -Rf edition-esnext && mv edition-temp edition-esnext ) )","our:compile:types":"tsc --project tsconfig.json --emitDeclarationOnly --declaration --declarationMap --declarationDir ./compiled-types && ( test ! -d compiled-types/source || ( mv compiled-types/source edition-temp && rm -Rf compiled-types && mv edition-temp compiled-types ) )","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz","our:meta:contributors":"update-contributors","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier","our:verify:directory":"valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write .","test":"node ./edition-esnext/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"gitHead":"b424af24b21e20454f4346fcd5587728ed7383e2","readmeFilename":"README.md","_id":"getmac@5.8.0-next.1592613371.b424af24b21e20454f4346fcd5587728ed7383e2","_nodeVersion":"14.4.0","_npmVersion":"6.14.5","dist":{"shasum":"0a3413d5c8041448a6624e92ebaa41ef1642493c","size":8630,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-5.8.0-next.1592613371.b424af24b21e20454f4346fcd5587728ed7383e2.tgz","integrity":"sha512-cjyPdUToIIrR459BnP3hmAdo7TNKkvH73ckT/PpCso5pWml4BhDiOdv7QkvPs735JccelQbzR5SmNhT9zZxJDg=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_5.8.0-next.1592613371.b424af24b21e20454f4346fcd5587728ed7383e2_1592613372784_0.0681153500227758"},"_hasShrinkwrap":false,"publish_time":1592613372918,"_cnpm_publish_time":1592613372918,"_cnpmcore_publish_time":"2021-12-16T22:29:01.442Z"},"5.7.0":{"name":"getmac","version":"5.7.0","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["export-default","getmac","ifconfig","ipconfig","mac","mac-address","node","typed","types","typescript"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","githubsponsors","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"githubSponsorsUsername":"balupton","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com","githubUsername":"bevry","githubRepository":"getmac","githubSlug":"bevry/getmac","npmPackageName":"getmac"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://github.com/balupton"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/Ogdentrod"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"Isaac Huang","url":"https://github.com/caasi"},{"name":"Jan Pilzer","url":"https://github.com/Hirse"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"zboszor","url":"https://github.com/zboszor"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=10"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["typescript","import"],"engines":false},{"description":"TypeScript compiled against ESNext for Node.js with Require for modules","directory":"edition-esnext","entry":"index.js","tags":["javascript","esnext","require"],"engines":{"node":"10 || 12 || 13 || 14"}},{"description":"TypeScript source code made to be compatible with Deno","directory":"edition-deno","entry":"index.ts","tags":["typescript","import","deno"],"engines":{"deno":true,"browsers":false}}],"types":"./compiled-types/","type":"commonjs","main":"edition-esnext/index.js","deno":"edition-deno/index.ts","dependencies":{"@types/node":"^14.0.13"},"devDependencies":{"@bevry/update-contributors":"^1.9.0","@typescript-eslint/eslint-plugin":"^3.2.0","@typescript-eslint/parser":"^3.2.0","assert-helpers":"^6.8.0","eslint":"^7.2.0","eslint-config-bevry":"^3.9.0","eslint-config-prettier":"^6.11.0","eslint-plugin-prettier":"^3.1.3","kava":"^5.4.0","make-deno-edition":"^0.2.2","prettier":"^2.0.5","projectz":"^2.6.0","surge":"^0.21.3","typedoc":"^0.17.7","typescript":"^3.9.5","valid-directory":"^2.3.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:deno && npm run our:compile:edition-esnext && npm run our:compile:types","our:compile:deno":"make-deno-edition --attempt","our:compile:edition-esnext":"tsc --module commonjs --target ESNext --outDir ./edition-esnext --project tsconfig.json && ( test ! -d edition-esnext/source || ( mv edition-esnext/source edition-temp && rm -Rf edition-esnext && mv edition-temp edition-esnext ) )","our:compile:types":"tsc --project tsconfig.json --emitDeclarationOnly --declaration --declarationMap --declarationDir ./compiled-types && ( test ! -d compiled-types/source || ( mv compiled-types/source edition-temp && rm -Rf compiled-types && mv edition-temp compiled-types ) )","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz","our:meta:contributors":"update-contributors","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier","our:verify:directory":"valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write .","test":"node ./edition-esnext/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"gitHead":"717b0a1ae93ffc1f735622e7e23d14213cf05576","_id":"getmac@5.7.0","_nodeVersion":"14.4.0","_npmVersion":"6.14.5","dist":{"shasum":"475c818f97f49920d28e10d7a776407e141f0aa5","size":8855,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-5.7.0.tgz","integrity":"sha512-hQtQ4dQ/ljP0jpZsRC3LhjMFPtIpD2yKmPJsbmpnIs9W5gxZseAsrViArdEtwuCphzOyl8vSyiAo1UtJkczdzg=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_5.7.0_1591795824044_0.9655726815830612"},"_hasShrinkwrap":false,"publish_time":1591795824235,"_cnpm_publish_time":1591795824235,"_cnpmcore_publish_time":"2021-12-16T22:29:01.623Z"},"5.7.0-next.1591795755.717b0a1ae93ffc1f735622e7e23d14213cf05576":{"name":"getmac","version":"5.7.0-next.1591795755.717b0a1ae93ffc1f735622e7e23d14213cf05576","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["export-default","getmac","ifconfig","ipconfig","mac","mac-address","node","typed","types","typescript"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","githubsponsors","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"githubSponsorsUsername":"balupton","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com","githubUsername":"bevry","githubRepository":"getmac","githubSlug":"bevry/getmac","npmPackageName":"getmac"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://github.com/balupton"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/Ogdentrod"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"Isaac Huang","url":"https://github.com/caasi"},{"name":"Jan Pilzer","url":"https://github.com/Hirse"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"zboszor","url":"https://github.com/zboszor"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=10"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["typescript","import"],"engines":false},{"description":"TypeScript compiled against ESNext for Node.js with Require for modules","directory":"edition-esnext","entry":"index.js","tags":["javascript","esnext","require"],"engines":{"node":"10 || 12 || 13 || 14"}},{"description":"TypeScript source code made to be compatible with Deno","directory":"edition-deno","entry":"index.ts","tags":["typescript","import","deno"],"engines":{"deno":true,"browsers":false}}],"types":"./compiled-types/","type":"commonjs","main":"edition-esnext/index.js","deno":"edition-deno/index.ts","dependencies":{"@types/node":"^14.0.13"},"devDependencies":{"@bevry/update-contributors":"^1.9.0","@typescript-eslint/eslint-plugin":"^3.2.0","@typescript-eslint/parser":"^3.2.0","assert-helpers":"^6.8.0","eslint":"^7.2.0","eslint-config-bevry":"^3.9.0","eslint-config-prettier":"^6.11.0","eslint-plugin-prettier":"^3.1.3","kava":"^5.4.0","make-deno-edition":"^0.2.2","prettier":"^2.0.5","projectz":"^2.6.0","surge":"^0.21.3","typedoc":"^0.17.7","typescript":"^3.9.5","valid-directory":"^2.3.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:deno && npm run our:compile:edition-esnext && npm run our:compile:types","our:compile:deno":"make-deno-edition --attempt","our:compile:edition-esnext":"tsc --module commonjs --target ESNext --outDir ./edition-esnext --project tsconfig.json && ( test ! -d edition-esnext/source || ( mv edition-esnext/source edition-temp && rm -Rf edition-esnext && mv edition-temp edition-esnext ) )","our:compile:types":"tsc --project tsconfig.json --emitDeclarationOnly --declaration --declarationMap --declarationDir ./compiled-types && ( test ! -d compiled-types/source || ( mv compiled-types/source edition-temp && rm -Rf compiled-types && mv edition-temp compiled-types ) )","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz","our:meta:contributors":"update-contributors","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier","our:verify:directory":"valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write .","test":"node ./edition-esnext/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"gitHead":"717b0a1ae93ffc1f735622e7e23d14213cf05576","readmeFilename":"README.md","_id":"getmac@5.7.0-next.1591795755.717b0a1ae93ffc1f735622e7e23d14213cf05576","_nodeVersion":"14.4.0","_npmVersion":"6.14.5","dist":{"shasum":"e01b0915a1fed15a799d96bf5a346d4c521b87e1","size":8906,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-5.7.0-next.1591795755.717b0a1ae93ffc1f735622e7e23d14213cf05576.tgz","integrity":"sha512-IQo6Q+l6pxvkXSXMGVzHv/x4BSksGNzS3QDQ6/YmAis9rQ1nwdLG6eyPlAj2KpZEKn4VEtNrvSgWCxkWdEi+Gw=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_5.7.0-next.1591795755.717b0a1ae93ffc1f735622e7e23d14213cf05576_1591795757030_0.7295463522108232"},"_hasShrinkwrap":false,"publish_time":1591795757188,"_cnpm_publish_time":1591795757188,"_cnpmcore_publish_time":"2021-12-16T22:29:01.855Z"},"5.6.0":{"name":"getmac","version":"5.6.0","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["export-default","getmac","ifconfig","ipconfig","mac","mac-address","node","typed","types","typescript"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","githubsponsors","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"githubSponsorsUsername":"balupton","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com","githubUsername":"bevry","githubRepository":"getmac","githubSlug":"bevry/getmac","npmPackageName":"getmac"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://github.com/balupton"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/Ogdentrod"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"Isaac Huang","url":"https://github.com/caasi"},{"name":"Jan Pilzer","url":"https://github.com/Hirse"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"zboszor","url":"https://github.com/zboszor"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=10"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["typescript","import"],"engines":false},{"description":"TypeScript compiled against ESNext for Node.js with Require for modules","directory":"edition-esnext","entry":"index.js","tags":["javascript","esnext","require"],"engines":{"node":"10 || 12 || 13 || 14"}},{"description":"TypeScript source code made to be compatible with Deno","directory":"edition-deno","entry":"index.ts","tags":["typescript","import","deno"],"engines":{"deno":true,"browsers":false}}],"types":"./compiled-types/","type":"commonjs","main":"edition-esnext/index.js","deno":"edition-deno/index.ts","dependencies":{"@types/node":"^14.0.13"},"devDependencies":{"@bevry/update-contributors":"^1.8.0","@typescript-eslint/eslint-plugin":"^3.2.0","@typescript-eslint/parser":"^3.2.0","assert-helpers":"^6.7.0","eslint":"^7.2.0","eslint-config-bevry":"^3.8.0","eslint-config-prettier":"^6.11.0","eslint-plugin-prettier":"^3.1.3","kava":"^5.3.0","make-deno-edition":"^0.1.2","prettier":"^2.0.5","projectz":"^2.5.0","surge":"^0.21.3","typedoc":"^0.17.7","typescript":"^3.9.5","valid-directory":"^2.2.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:deno && npm run our:compile:edition-esnext && npm run our:compile:types","our:compile:deno":"make-deno-edition --attempt","our:compile:edition-esnext":"tsc --module commonjs --target ESNext --outDir ./edition-esnext --project tsconfig.json && ( test ! -d edition-esnext/source || ( mv edition-esnext/source edition-temp && rm -Rf edition-esnext && mv edition-temp edition-esnext ) )","our:compile:types":"tsc --project tsconfig.json --emitDeclarationOnly --declaration --declarationMap --declarationDir ./compiled-types && ( test ! -d compiled-types/source || ( mv compiled-types/source edition-temp && rm -Rf compiled-types && mv edition-temp compiled-types ) )","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz","our:meta:contributors":"update-contributors","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier","our:verify:directory":"valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write .","test":"node ./edition-esnext/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"gitHead":"15a406cf53a1c829109df2c5c40a2b2ebb2baae3","_id":"getmac@5.6.0","_nodeVersion":"14.4.0","_npmVersion":"6.14.5","dist":{"shasum":"dc9a4a51432381626ae36c8bd417a3e8f9c3054f","size":8852,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-5.6.0.tgz","integrity":"sha512-R+2rQC/0pZpko/9ldFHm1ihk4nC+l0zItLcA2lkixLwn3MSx3u/ThnrTBmqwCzDHFh72AnX1ZWpZ4i7xZNm2tA=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_5.6.0_1591778667379_0.9536138377010885"},"_hasShrinkwrap":false,"publish_time":1591778667528,"_cnpm_publish_time":1591778667528,"_cnpmcore_publish_time":"2021-12-16T22:29:02.078Z"},"5.6.0-next.1591778573.15a406cf53a1c829109df2c5c40a2b2ebb2baae3":{"name":"getmac","version":"5.6.0-next.1591778573.15a406cf53a1c829109df2c5c40a2b2ebb2baae3","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["export-default","getmac","ifconfig","ipconfig","mac","mac-address","node","typed","types","typescript"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","githubsponsors","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"githubSponsorsUsername":"balupton","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com","githubUsername":"bevry","githubRepository":"getmac","githubSlug":"bevry/getmac","npmPackageName":"getmac"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://github.com/balupton"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/Ogdentrod"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"Isaac Huang","url":"https://github.com/caasi"},{"name":"Jan Pilzer","url":"https://github.com/Hirse"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"zboszor","url":"https://github.com/zboszor"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=10"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["typescript","import"],"engines":false},{"description":"TypeScript compiled against ESNext for Node.js with Require for modules","directory":"edition-esnext","entry":"index.js","tags":["javascript","esnext","require"],"engines":{"node":"10 || 12 || 13 || 14"}},{"description":"TypeScript source code made to be compatible with Deno","directory":"edition-deno","entry":"index.ts","tags":["typescript","import","deno"],"engines":{"deno":true,"browsers":false}}],"types":"./compiled-types/","type":"commonjs","main":"edition-esnext/index.js","deno":"edition-deno/index.ts","dependencies":{"@types/node":"^14.0.13"},"devDependencies":{"@bevry/update-contributors":"^1.8.0","@typescript-eslint/eslint-plugin":"^3.2.0","@typescript-eslint/parser":"^3.2.0","assert-helpers":"^6.7.0","eslint":"^7.2.0","eslint-config-bevry":"^3.8.0","eslint-config-prettier":"^6.11.0","eslint-plugin-prettier":"^3.1.3","kava":"^5.3.0","make-deno-edition":"^0.1.2","prettier":"^2.0.5","projectz":"^2.5.0","surge":"^0.21.3","typedoc":"^0.17.7","typescript":"^3.9.5","valid-directory":"^2.2.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:deno && npm run our:compile:edition-esnext && npm run our:compile:types","our:compile:deno":"make-deno-edition --attempt","our:compile:edition-esnext":"tsc --module commonjs --target ESNext --outDir ./edition-esnext --project tsconfig.json && ( test ! -d edition-esnext/source || ( mv edition-esnext/source edition-temp && rm -Rf edition-esnext && mv edition-temp edition-esnext ) )","our:compile:types":"tsc --project tsconfig.json --emitDeclarationOnly --declaration --declarationMap --declarationDir ./compiled-types && ( test ! -d compiled-types/source || ( mv compiled-types/source edition-temp && rm -Rf compiled-types && mv edition-temp compiled-types ) )","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz","our:meta:contributors":"update-contributors","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier","our:verify:directory":"valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write .","test":"node ./edition-esnext/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"gitHead":"15a406cf53a1c829109df2c5c40a2b2ebb2baae3","readmeFilename":"README.md","_id":"getmac@5.6.0-next.1591778573.15a406cf53a1c829109df2c5c40a2b2ebb2baae3","_nodeVersion":"14.4.0","_npmVersion":"6.14.5","dist":{"shasum":"0a60c68e1d0a6faa6effb90c0744de9b713270d6","size":8907,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-5.6.0-next.1591778573.15a406cf53a1c829109df2c5c40a2b2ebb2baae3.tgz","integrity":"sha512-1UU32MB1K9LAj7GYG6Q2gbRTFTWycpfonA641pFgZurVMBQcO8snFy6RGkNk2Q/GgRZXHlz+JwUpn7QLnSH12w=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_5.6.0-next.1591778573.15a406cf53a1c829109df2c5c40a2b2ebb2baae3_1591778574606_0.8091468008202647"},"_hasShrinkwrap":false,"publish_time":1591778574751,"_cnpm_publish_time":1591778574751,"_cnpmcore_publish_time":"2021-12-16T22:29:02.290Z"},"5.5.0":{"name":"getmac","version":"5.5.0","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["export-default","getmac","ifconfig","ipconfig","mac","mac-address","node","typed","types","typescript"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","githubsponsors","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"githubSponsorsUsername":"balupton","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com","githubUsername":"bevry","githubRepository":"getmac","githubSlug":"bevry/getmac","npmPackageName":"getmac"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://github.com/balupton"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/Ogdentrod"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"Isaac Huang","url":"https://github.com/caasi"},{"name":"Jan Pilzer","url":"https://github.com/Hirse"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"zboszor","url":"https://github.com/zboszor"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=10"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["typescript","import"],"engines":false},{"description":"TypeScript compiled against ESNext for Node.js with Require for modules","directory":"edition-esnext","entry":"index.js","tags":["javascript","esnext","require"],"engines":{"node":"10 || 12 || 13 || 14"}}],"types":"./compiled-types/","type":"commonjs","main":"edition-esnext/index.js","dependencies":{"@types/node":"^14.0.4"},"devDependencies":{"@bevry/update-contributors":"^1.7.0","@typescript-eslint/eslint-plugin":"^2.34.0","@typescript-eslint/parser":"^2.34.0","assert-helpers":"^6.6.0","eslint":"^7.0.0","eslint-config-bevry":"^3.7.0","eslint-config-prettier":"^6.11.0","eslint-plugin-prettier":"^3.1.3","kava":"^5.2.0","prettier":"^2.0.5","projectz":"^2.3.0","surge":"^0.21.3","typedoc":"^0.17.7","typescript":"^3.9.3","valid-directory":"^2.1.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:edition-esnext && npm run our:compile:types","our:compile:edition-esnext":"tsc --module commonjs --target ESNext --outDir ./edition-esnext --project tsconfig.json && ( test ! -d edition-esnext/source || ( mv edition-esnext/source edition-temp && rm -Rf edition-esnext && mv edition-temp edition-esnext ) )","our:compile:types":"tsc --project tsconfig.json --emitDeclarationOnly --declaration --declarationMap --declarationDir ./compiled-types && ( test ! -d compiled-types/source || ( mv compiled-types/source edition-temp && rm -Rf compiled-types && mv edition-temp compiled-types ) )","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz","our:meta:contributors":"update-contributors","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier","our:verify:directory":"valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write .","test":"node ./edition-esnext/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"gitHead":"d3092217dc711ecd31bf42d366137b51d3d0c974","_id":"getmac@5.5.0","_nodeVersion":"14.3.0","_npmVersion":"6.14.5","dist":{"shasum":"9b8afda4c0ee8669e56fe0baab8e96d02dac940e","size":8552,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-5.5.0.tgz","integrity":"sha512-py48X+iK0l/osQVHAYkMikeKbhDK2N3A9oD3bSXSx0kUcLuXRixtSkPXAdpglXZv4JxFpLImGnQyL0j9kfDrzw=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_5.5.0_1590074892695_0.36205541621481885"},"_hasShrinkwrap":false,"publish_time":1590074892924,"_cnpm_publish_time":1590074892924,"_cnpmcore_publish_time":"2021-12-16T22:29:02.502Z"},"5.5.0-next.1590074815.d3092217dc711ecd31bf42d366137b51d3d0c974":{"name":"getmac","version":"5.5.0-next.1590074815.d3092217dc711ecd31bf42d366137b51d3d0c974","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["export-default","getmac","ifconfig","ipconfig","mac","mac-address","node","typed","types","typescript"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","githubsponsors","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"githubSponsorsUsername":"balupton","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com","githubUsername":"bevry","githubRepository":"getmac","githubSlug":"bevry/getmac","npmPackageName":"getmac"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://github.com/balupton"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/Ogdentrod"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"Isaac Huang","url":"https://github.com/caasi"},{"name":"Jan Pilzer","url":"https://github.com/Hirse"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"zboszor","url":"https://github.com/zboszor"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=10"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["typescript","import"],"engines":false},{"description":"TypeScript compiled against ESNext for Node.js with Require for modules","directory":"edition-esnext","entry":"index.js","tags":["javascript","esnext","require"],"engines":{"node":"10 || 12 || 13 || 14"}}],"types":"./compiled-types/","type":"commonjs","main":"edition-esnext/index.js","dependencies":{"@types/node":"^14.0.4"},"devDependencies":{"@bevry/update-contributors":"^1.7.0","@typescript-eslint/eslint-plugin":"^2.34.0","@typescript-eslint/parser":"^2.34.0","assert-helpers":"^6.6.0","eslint":"^7.0.0","eslint-config-bevry":"^3.7.0","eslint-config-prettier":"^6.11.0","eslint-plugin-prettier":"^3.1.3","kava":"^5.2.0","prettier":"^2.0.5","projectz":"^2.3.0","surge":"^0.21.3","typedoc":"^0.17.7","typescript":"^3.9.3","valid-directory":"^2.1.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:edition-esnext && npm run our:compile:types","our:compile:edition-esnext":"tsc --module commonjs --target ESNext --outDir ./edition-esnext --project tsconfig.json && ( test ! -d edition-esnext/source || ( mv edition-esnext/source edition-temp && rm -Rf edition-esnext && mv edition-temp edition-esnext ) )","our:compile:types":"tsc --project tsconfig.json --emitDeclarationOnly --declaration --declarationMap --declarationDir ./compiled-types && ( test ! -d compiled-types/source || ( mv compiled-types/source edition-temp && rm -Rf compiled-types && mv edition-temp compiled-types ) )","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz","our:meta:contributors":"update-contributors","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier","our:verify:directory":"valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write .","test":"node ./edition-esnext/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"gitHead":"d3092217dc711ecd31bf42d366137b51d3d0c974","readmeFilename":"README.md","_id":"getmac@5.5.0-next.1590074815.d3092217dc711ecd31bf42d366137b51d3d0c974","_nodeVersion":"14.3.0","_npmVersion":"6.14.5","dist":{"shasum":"127af25a43a844ee6634cd6c84ae9714c74ba0d0","size":8610,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-5.5.0-next.1590074815.d3092217dc711ecd31bf42d366137b51d3d0c974.tgz","integrity":"sha512-LChCO3qfJH2RO8/WVkmsn5WHEuygMoBRz7fgx++R7mh6G0m8J/tZHMQYYz6mxQFoeBkMC6zGH1guO87yl4cF9A=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_5.5.0-next.1590074815.d3092217dc711ecd31bf42d366137b51d3d0c974_1590074816752_0.2511216805049412"},"_hasShrinkwrap":false,"publish_time":1590074816913,"_cnpm_publish_time":1590074816913,"_cnpmcore_publish_time":"2021-12-16T22:29:02.684Z"},"5.4.0-next.1590038553.ceb67b4cd4aa1db118d8dffd8713d8a413657161":{"name":"getmac","version":"5.4.0-next.1590038553.ceb67b4cd4aa1db118d8dffd8713d8a413657161","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["export-default","getmac","ifconfig","ipconfig","mac","mac-address","node","typed","types","typescript"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","githubsponsors","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"githubSponsorsUsername":"balupton","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com","githubUsername":"bevry","githubRepository":"getmac","githubSlug":"bevry/getmac","npmPackageName":"getmac"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://github.com/balupton"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/Ogdentrod"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"Isaac Huang","url":"https://github.com/caasi"},{"name":"Jan Pilzer","url":"https://github.com/Hirse"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"zboszor","url":"https://github.com/zboszor"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=10"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["typescript","import"],"engines":false},{"description":"TypeScript compiled against ESNext for Node.js with Require for modules","directory":"edition-esnext","entry":"index.js","tags":["javascript","esnext","require"],"engines":{"node":"10 || 12 || 13 || 14"}}],"types":"./compiled-types/","type":"commonjs","main":"edition-esnext/index.js","dependencies":{"@types/node":"^14.0.4"},"devDependencies":{"@bevry/update-contributors":"^1.6.0","@typescript-eslint/eslint-plugin":"^2.34.0","@typescript-eslint/parser":"^2.34.0","assert-helpers":"^6.5.0","eslint":"^7.0.0","eslint-config-bevry":"^3.6.0","eslint-config-prettier":"^6.11.0","eslint-plugin-prettier":"^3.1.3","kava":"^5.1.0","prettier":"^2.0.5","projectz":"^2.2.0","surge":"^0.21.3","typedoc":"^0.17.7","typescript":"^3.9.3","valid-directory":"^2.0.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:edition-esnext && npm run our:compile:types","our:compile:edition-esnext":"tsc --module commonjs --target ESNext --outDir ./edition-esnext --project tsconfig.json && ( test ! -d edition-esnext/source || ( mv edition-esnext/source edition-temp && rm -Rf edition-esnext && mv edition-temp edition-esnext ) )","our:compile:types":"tsc --project tsconfig.json --emitDeclarationOnly --declaration --declarationMap --declarationDir ./compiled-types && ( test ! -d compiled-types/source || ( mv compiled-types/source edition-temp && rm -Rf compiled-types && mv edition-temp compiled-types ) )","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz","our:meta:contributors":"update-contributors","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier","our:verify:directory":"valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write .","test":"node ./edition-esnext/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"gitHead":"ceb67b4cd4aa1db118d8dffd8713d8a413657161","readmeFilename":"README.md","_id":"getmac@5.4.0-next.1590038553.ceb67b4cd4aa1db118d8dffd8713d8a413657161","_nodeVersion":"14.3.0","_npmVersion":"6.14.5","dist":{"shasum":"19775f8d7b3e70f1cd7e0f466a7efb82f27f1fec","size":8602,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-5.4.0-next.1590038553.ceb67b4cd4aa1db118d8dffd8713d8a413657161.tgz","integrity":"sha512-CibpivEgKEyaopbZq6+qA0w8SOjq4593OO8GcZGKg4IXjXTWJy3B7SmcCzEjLT0NovtH7J66fZVkDRQ1ltvXIA=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_5.4.0-next.1590038553.ceb67b4cd4aa1db118d8dffd8713d8a413657161_1590038554449_0.7818584560694761"},"_hasShrinkwrap":false,"publish_time":1590038554565,"_cnpm_publish_time":1590038554565,"_cnpmcore_publish_time":"2021-12-16T22:29:02.896Z"},"5.4.0":{"name":"getmac","version":"5.4.0","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["export-default","getmac","ifconfig","ipconfig","mac","mac-address","node","typed","types","typescript"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","githubsponsors","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"githubSponsorsUsername":"balupton","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com","githubUsername":"bevry","githubRepository":"getmac","githubSlug":"bevry/getmac","npmPackageName":"getmac"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://github.com/balupton"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/Ogdentrod"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"Isaac Huang","url":"https://github.com/caasi"},{"name":"Jan Pilzer","url":"https://github.com/Hirse"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"zboszor","url":"https://github.com/zboszor"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=10"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["typescript","import"],"engines":false},{"description":"TypeScript compiled against ESNext for Node.js with Require for modules","directory":"edition-esnext","entry":"index.js","tags":["javascript","esnext","require"],"engines":{"node":"10 || 12 || 13 || 14"}}],"types":"./compiled-types/","type":"commonjs","main":"edition-esnext/index.js","dependencies":{"@types/node":"^14.0.4"},"devDependencies":{"@bevry/update-contributors":"^1.6.0","@typescript-eslint/eslint-plugin":"^2.34.0","@typescript-eslint/parser":"^2.34.0","assert-helpers":"^6.5.0","eslint":"^7.0.0","eslint-config-bevry":"^3.6.0","eslint-config-prettier":"^6.11.0","eslint-plugin-prettier":"^3.1.3","kava":"^5.1.0","prettier":"^2.0.5","projectz":"^2.2.0","surge":"^0.21.3","typedoc":"^0.17.7","typescript":"^3.9.3","valid-directory":"^2.0.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:edition-esnext && npm run our:compile:types","our:compile:edition-esnext":"tsc --module commonjs --target ESNext --outDir ./edition-esnext --project tsconfig.json && ( test ! -d edition-esnext/source || ( mv edition-esnext/source edition-temp && rm -Rf edition-esnext && mv edition-temp edition-esnext ) )","our:compile:types":"tsc --project tsconfig.json --emitDeclarationOnly --declaration --declarationMap --declarationDir ./compiled-types && ( test ! -d compiled-types/source || ( mv compiled-types/source edition-temp && rm -Rf compiled-types && mv edition-temp compiled-types ) )","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz","our:meta:contributors":"update-contributors","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier","our:verify:directory":"valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write .","test":"node ./edition-esnext/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"gitHead":"ceb67b4cd4aa1db118d8dffd8713d8a413657161","_id":"getmac@5.4.0","_nodeVersion":"14.3.0","_npmVersion":"6.14.5","dist":{"shasum":"a6f8c05ff03c03e88bd9835c74e1f5cef6220bde","size":8545,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-5.4.0.tgz","integrity":"sha512-iqQrHNkOPFlHM02LX5qNU3+lZG6vwJUzDdGjZfkubdIrpRIi8dBnnM6L58CJ9U5R4gr+JVbPyXvMPDuU2Z9L8A=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_5.4.0_1590038377425_0.5572038121579377"},"_hasShrinkwrap":false,"publish_time":1590038377613,"_cnpm_publish_time":1590038377613,"_cnpmcore_publish_time":"2021-12-16T22:29:03.086Z"},"5.3.0":{"name":"getmac","version":"5.3.0","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["export-default","getmac","ifconfig","ipconfig","mac","mac-address","node","typed","types","typescript"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","githubsponsors","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"githubSponsorsUsername":"balupton","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com","githubUsername":"bevry","githubRepository":"getmac","githubSlug":"bevry/getmac","npmPackageName":"getmac"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://github.com/balupton"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/Ogdentrod"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"Isaac Huang","url":"https://github.com/caasi"},{"name":"Jan Pilzer","url":"https://github.com/Hirse"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"zboszor","url":"https://github.com/zboszor"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=10"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["typescript","import"],"engines":false},{"description":"TypeScript compiled against ESNext for Node.js with Require for modules","directory":"edition-esnext","entry":"index.js","tags":["javascript","esnext","require"],"engines":{"node":"10 || 12 || 13 || 14"}}],"types":"./compiled-types/","type":"commonjs","main":"edition-esnext/index.js","dependencies":{"@types/node":"^14.0.4"},"devDependencies":{"@bevry/update-contributors":"^1.5.0","@typescript-eslint/eslint-plugin":"^2.34.0","@typescript-eslint/parser":"^2.34.0","assert-helpers":"^6.4.0","eslint":"^7.0.0","eslint-config-bevry":"^3.5.0","eslint-config-prettier":"^6.11.0","eslint-plugin-prettier":"^3.1.3","kava":"^5.0.0","prettier":"^2.0.5","projectz":"^2.1.0","surge":"^0.21.3","typedoc":"^0.17.7","typescript":"^3.9.3","valid-directory":"^1.6.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:edition-esnext && npm run our:compile:types","our:compile:edition-esnext":"tsc --module commonjs --target ESNext --outDir ./edition-esnext --project tsconfig.json && test -d edition-esnext/source && ( mv edition-esnext/source edition-temp && rm -Rf edition-esnext && mv edition-temp edition-esnext ) || true","our:compile:types":"tsc --project tsconfig.json --emitDeclarationOnly --declaration --declarationDir ./compiled-types/ --declarationMap","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz","our:meta:contributors":"update-contributors","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier","our:verify:directory":"valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write .","test":"node ./edition-esnext/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"gitHead":"4d0f65f3cd5f42f53972409d623897194ed0dbe2","_id":"getmac@5.3.0","_nodeVersion":"14.3.0","_npmVersion":"6.14.5","dist":{"shasum":"2694a228c88c7d808c8fadacbad1a2fb2c60f15c","size":8522,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-5.3.0.tgz","integrity":"sha512-mo4my7AqohPFlDxgqXk6QIPwxcsC3kreT7hADdlW76b/um4W9XO92LexgkDcBZOP1Uf5BtSHf6p1GbnGhvTtCg=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_5.3.0_1589956057459_0.6819354036806256"},"_hasShrinkwrap":false,"publish_time":1589956057660,"_cnpm_publish_time":1589956057660,"_cnpmcore_publish_time":"2021-12-16T22:29:03.335Z"},"5.3.0-next.1589955986.4d0f65f3cd5f42f53972409d623897194ed0dbe2":{"name":"getmac","version":"5.3.0-next.1589955986.4d0f65f3cd5f42f53972409d623897194ed0dbe2","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["export-default","getmac","ifconfig","ipconfig","mac","mac-address","node","typed","types","typescript"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","githubsponsors","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"githubSponsorsUsername":"balupton","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com","githubUsername":"bevry","githubRepository":"getmac","githubSlug":"bevry/getmac","npmPackageName":"getmac"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://github.com/balupton"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/Ogdentrod"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"Isaac Huang","url":"https://github.com/caasi"},{"name":"Jan Pilzer","url":"https://github.com/Hirse"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"zboszor","url":"https://github.com/zboszor"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=10"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["typescript","import"],"engines":false},{"description":"TypeScript compiled against ESNext for Node.js with Require for modules","directory":"edition-esnext","entry":"index.js","tags":["javascript","esnext","require"],"engines":{"node":"10 || 12 || 13 || 14"}}],"types":"./compiled-types/","type":"commonjs","main":"edition-esnext/index.js","dependencies":{"@types/node":"^14.0.4"},"devDependencies":{"@bevry/update-contributors":"^1.5.0","@typescript-eslint/eslint-plugin":"^2.34.0","@typescript-eslint/parser":"^2.34.0","assert-helpers":"^6.4.0","eslint":"^7.0.0","eslint-config-bevry":"^3.5.0","eslint-config-prettier":"^6.11.0","eslint-plugin-prettier":"^3.1.3","kava":"^5.0.0","prettier":"^2.0.5","projectz":"^2.1.0","surge":"^0.21.3","typedoc":"^0.17.7","typescript":"^3.9.3","valid-directory":"^1.6.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:edition-esnext && npm run our:compile:types","our:compile:edition-esnext":"tsc --module commonjs --target ESNext --outDir ./edition-esnext --project tsconfig.json && test -d edition-esnext/source && ( mv edition-esnext/source edition-temp && rm -Rf edition-esnext && mv edition-temp edition-esnext ) || true","our:compile:types":"tsc --project tsconfig.json --emitDeclarationOnly --declaration --declarationDir ./compiled-types/ --declarationMap","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz","our:meta:contributors":"update-contributors","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier","our:verify:directory":"valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write .","test":"node ./edition-esnext/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"gitHead":"4d0f65f3cd5f42f53972409d623897194ed0dbe2","readmeFilename":"README.md","_id":"getmac@5.3.0-next.1589955986.4d0f65f3cd5f42f53972409d623897194ed0dbe2","_nodeVersion":"14.3.0","_npmVersion":"6.14.5","dist":{"shasum":"9e4db916f03ca4be353cb8ed6fcde199c426c717","size":8576,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-5.3.0-next.1589955986.4d0f65f3cd5f42f53972409d623897194ed0dbe2.tgz","integrity":"sha512-UIIH0PsQQIxQaTtN2j09zUP3VDK8wzZ6BHNpqOr1hHOH9OUNidU/H6ijUubqdEUy4k/Jk/YIxHRZ6DUp709RQg=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_5.3.0-next.1589955986.4d0f65f3cd5f42f53972409d623897194ed0dbe2_1589955988090_0.05461065318599201"},"_hasShrinkwrap":false,"publish_time":1589955988214,"_cnpm_publish_time":1589955988214,"_cnpmcore_publish_time":"2021-12-16T22:29:03.556Z"},"5.2.0":{"name":"getmac","version":"5.2.0","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["export-default","getmac","ifconfig","ipconfig","mac","mac-address","node","typed","types","typescript"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","githubsponsors","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"githubSponsorsUsername":"balupton","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"http://balupton.com"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"Isaac Huang","url":"http://caasih.net"},{"name":"zboszor","url":"https://github.com/zboszor"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"http://guhcostan.site/"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/Ogdentrod"},{"name":"Jan Pilzer","url":"https://github.com/Hirse"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=10"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["typescript","import"],"engines":false},{"description":"TypeScript compiled against ESNext for Node.js with Require for modules","directory":"edition-esnext","entry":"index.js","tags":["javascript","esnext","require"],"engines":{"node":"10 || 12 || 13 || 14"}}],"types":"source/index.ts","type":"commonjs","main":"edition-esnext/index.js","dependencies":{"@types/node":"^13.13.5"},"devDependencies":{"@bevry/update-contributors":"^1.0.1","@typescript-eslint/eslint-plugin":"^2.31.0","@typescript-eslint/parser":"^2.31.0","assert-helpers":"^6.2.0","eslint":"^6.8.0","eslint-config-bevry":"^3.4.0","eslint-config-prettier":"^6.11.0","eslint-plugin-prettier":"^3.1.3","kava":"^4.4.0","prettier":"^2.0.5","projectz":"^1.19.1","surge":"^0.21.3","typedoc":"^0.17.6","typescript":"^3.8.3","valid-directory":"^1.6.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:edition-esnext","our:compile:edition-esnext":"tsc --module commonjs --target ESNext --outDir ./edition-esnext --project tsconfig.json && test -d edition-esnext/source && ( mv edition-esnext/source edition-temp && rm -Rf edition-esnext && mv edition-temp edition-esnext ) || true","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz","our:meta:contributors":"npx @bevry/update-contributors","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && npx typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source","our:meta:projectz":"npx projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier && npm run our:verify:typescript","our:verify:directory":"npx valid-directory","our:verify:eslint":"npx eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write .","our:verify:typescript":"tsc --noEmit --project tsconfig.json","test":"node ./edition-esnext/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"gitHead":"bc28d2425fec3ae48435b34ad8588b7e067a98e7","_id":"getmac@5.2.0","_nodeVersion":"14.2.0","_npmVersion":"6.14.4","dist":{"shasum":"d98db9490a766336b3c02f427c5828d2c5b7390b","size":7762,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-5.2.0.tgz","integrity":"sha512-FBQqEBO4hFlv//gtN8+x4tINgfb4noOGl3WCSGd9xaPRMkMK3Lt/FF1/dwiD3p7i2F0u3uL6oV61MQyHqYqVlw=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_5.2.0_1588740943709_0.018053338457176604"},"_hasShrinkwrap":false,"publish_time":1588740943818,"_cnpm_publish_time":1588740943818,"_cnpmcore_publish_time":"2021-12-16T22:29:03.784Z"},"5.2.0-next.1588740871.bc28d2425fec3ae48435b34ad8588b7e067a98e7":{"name":"getmac","version":"5.2.0-next.1588740871.bc28d2425fec3ae48435b34ad8588b7e067a98e7","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["export-default","getmac","ifconfig","ipconfig","mac","mac-address","node","typed","types","typescript"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","githubsponsors","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"githubSponsorsUsername":"balupton","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"http://balupton.com"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"Isaac Huang","url":"http://caasih.net"},{"name":"zboszor","url":"https://github.com/zboszor"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"http://guhcostan.site/"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/Ogdentrod"},{"name":"Jan Pilzer","url":"https://github.com/Hirse"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=10"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["typescript","import"],"engines":false},{"description":"TypeScript compiled against ESNext for Node.js with Require for modules","directory":"edition-esnext","entry":"index.js","tags":["javascript","esnext","require"],"engines":{"node":"10 || 12 || 13 || 14"}}],"types":"source/index.ts","type":"commonjs","main":"edition-esnext/index.js","dependencies":{"@types/node":"^13.13.5"},"devDependencies":{"@bevry/update-contributors":"^1.0.1","@typescript-eslint/eslint-plugin":"^2.31.0","@typescript-eslint/parser":"^2.31.0","assert-helpers":"^6.2.0","eslint":"^6.8.0","eslint-config-bevry":"^3.4.0","eslint-config-prettier":"^6.11.0","eslint-plugin-prettier":"^3.1.3","kava":"^4.4.0","prettier":"^2.0.5","projectz":"^1.19.1","surge":"^0.21.3","typedoc":"^0.17.6","typescript":"^3.8.3","valid-directory":"^1.6.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:edition-esnext","our:compile:edition-esnext":"tsc --module commonjs --target ESNext --outDir ./edition-esnext --project tsconfig.json && test -d edition-esnext/source && ( mv edition-esnext/source edition-temp && rm -Rf edition-esnext && mv edition-temp edition-esnext ) || true","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz","our:meta:contributors":"npx @bevry/update-contributors","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && npx typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source","our:meta:projectz":"npx projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier && npm run our:verify:typescript","our:verify:directory":"npx valid-directory","our:verify:eslint":"npx eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write .","our:verify:typescript":"tsc --noEmit --project tsconfig.json","test":"node ./edition-esnext/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"gitHead":"bc28d2425fec3ae48435b34ad8588b7e067a98e7","readmeFilename":"README.md","_id":"getmac@5.2.0-next.1588740871.bc28d2425fec3ae48435b34ad8588b7e067a98e7","_nodeVersion":"14.2.0","_npmVersion":"6.14.4","dist":{"shasum":"ae6acbd5349b73cc2c5cf4868f08848a99851991","size":7814,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-5.2.0-next.1588740871.bc28d2425fec3ae48435b34ad8588b7e067a98e7.tgz","integrity":"sha512-ysGdaDstDPD6pu/QuZOeQFFv2juTctJwlJLCEgQwsQZ5iaHMkbMrCKchLsFx8iQ4RGbjSAhIM0iDHH7IYRXzAg=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_5.2.0-next.1588740871.bc28d2425fec3ae48435b34ad8588b7e067a98e7_1588740873237_0.8917258934339429"},"_hasShrinkwrap":false,"publish_time":1588740873352,"_cnpm_publish_time":1588740873352,"_cnpmcore_publish_time":"2021-12-16T22:29:03.986Z"},"5.1.0-next.1588200124.0c434c13f91b771293c707934f6507d18be5e2f0":{"name":"getmac","version":"5.1.0-next.1588200124.0c434c13f91b771293c707934f6507d18be5e2f0","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["export-default","getmac","ifconfig","ipconfig","mac","mac-address","typed","types","typescript"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","githubsponsors","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"githubSponsorsUsername":"balupton","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"http://balupton.com"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"Isaac Huang","url":"http://caasih.net"},{"name":"zboszor","url":"https://github.com/zboszor"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/Ogdentrod"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=8"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["typescript","import"],"engines":false},{"description":"TypeScript compiled against ESNext for Node.js with Require for modules","directory":"edition-esnext","entry":"index.js","tags":["javascript","esnext","require"],"engines":{"node":"8 || 10 || 12 || 13"}}],"types":"source/index.ts","type":"commonjs","main":"edition-esnext/index.js","dependencies":{"@types/node":"^13.5.1"},"devDependencies":{"@typescript-eslint/eslint-plugin":"^2.18.0","@typescript-eslint/parser":"^2.18.0","assert-helpers":"^5.8.0","coffeelint":"^2.1.0","coffeescript":"^2.5.0","eslint":"^6.8.0","eslint-config-bevry":"^2.3.0","eslint-config-prettier":"^6.10.0","eslint-plugin-prettier":"^3.1.2","kava":"^4.4.0","prettier":"^1.19.1","projectz":"^1.19.0","surge":"^0.21.3","typedoc":"^0.16.9","typescript":"^3.7.5","valid-directory":"^1.6.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:edition-esnext","our:compile:edition-esnext":"tsc --module commonjs --target ESNext --outDir ./edition-esnext --project tsconfig.json && test -d edition-esnext/source && ( mv edition-esnext/source edition-temp && rm -Rf edition-esnext && mv edition-temp edition-esnext ) || true","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:docs && npm run our:meta:projectz","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:coffeelint && npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier && npm run our:verify:typescript","our:verify:coffeelint":"coffeelint ./source","our:verify:directory":"valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write ./source/** *.md","our:verify:typescript":"tsc --noEmit --project tsconfig.json","test":"node ./edition-esnext/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"gitHead":"0c434c13f91b771293c707934f6507d18be5e2f0","readmeFilename":"README.md","_id":"getmac@5.1.0-next.1588200124.0c434c13f91b771293c707934f6507d18be5e2f0","_nodeVersion":"12.16.3","_npmVersion":"6.14.4","dist":{"shasum":"882a17843a0746dd568fbe2942d74823db91eeb6","size":7609,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-5.1.0-next.1588200124.0c434c13f91b771293c707934f6507d18be5e2f0.tgz","integrity":"sha512-XpGag2QNlvbA74PeBjw3xJrtyAcbAsbqwZHuzlGViHlDop2bCpySbkGZL7GhA4nqhIrXT+7R+BP4YbtmZbQSiQ=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_5.1.0-next.1588200124.0c434c13f91b771293c707934f6507d18be5e2f0_1588200141763_0.5076305561419199"},"_hasShrinkwrap":false,"publish_time":1588200141844,"_cnpm_publish_time":1588200141844,"_cnpmcore_publish_time":"2021-12-16T22:29:04.189Z"},"5.1.0-next.1584137946.d3cca899394af1f344a11026fa4ba019d7910f54":{"name":"getmac","version":"5.1.0-next.1584137946.d3cca899394af1f344a11026fa4ba019d7910f54","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["export-default","getmac","ifconfig","ipconfig","mac","mac-address","typed","types","typescript"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","githubsponsors","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"githubSponsorsUsername":"balupton","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"http://balupton.com"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"Isaac Huang","url":"http://caasih.net"},{"name":"zboszor","url":"https://github.com/zboszor"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/Ogdentrod"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=8"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["typescript","import"],"engines":false},{"description":"TypeScript compiled against ESNext for Node.js with Require for modules","directory":"edition-esnext","entry":"index.js","tags":["javascript","esnext","require"],"engines":{"node":"8 || 10 || 12 || 13"}}],"types":"source/index.ts","type":"commonjs","main":"edition-esnext/index.js","dependencies":{"@types/node":"^13.5.1"},"devDependencies":{"@typescript-eslint/eslint-plugin":"^2.18.0","@typescript-eslint/parser":"^2.18.0","assert-helpers":"^5.8.0","coffeelint":"^2.1.0","coffeescript":"^2.5.0","eslint":"^6.8.0","eslint-config-bevry":"^2.3.0","eslint-config-prettier":"^6.10.0","eslint-plugin-prettier":"^3.1.2","kava":"^4.4.0","prettier":"^1.19.1","projectz":"^1.19.0","surge":"^0.21.3","typedoc":"^0.16.9","typescript":"^3.7.5","valid-directory":"^1.6.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:edition-esnext","our:compile:edition-esnext":"tsc --module commonjs --target ESNext --outDir ./edition-esnext --project tsconfig.json && test -d edition-esnext/source && ( mv edition-esnext/source edition-temp && rm -Rf edition-esnext && mv edition-temp edition-esnext ) || true","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:docs && npm run our:meta:projectz","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:coffeelint && npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier && npm run our:verify:typescript","our:verify:coffeelint":"coffeelint ./source","our:verify:directory":"valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write ./source/** *.md","our:verify:typescript":"tsc --noEmit --project tsconfig.json","test":"node ./edition-esnext/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"gitHead":"d3cca899394af1f344a11026fa4ba019d7910f54","readmeFilename":"README.md","_id":"getmac@5.1.0-next.1584137946.d3cca899394af1f344a11026fa4ba019d7910f54","_nodeVersion":"12.16.1","_npmVersion":"6.13.4","dist":{"shasum":"3d71c98672ba1596ea74018c3535e325df5f886b","size":7611,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-5.1.0-next.1584137946.d3cca899394af1f344a11026fa4ba019d7910f54.tgz","integrity":"sha512-YV4lWS9llm08/Htz9VWgt0kVFaOZfAHT9/aIzSWBXIplSScYyienGqpdHhPGMDlJqDOHY+h9mufv/4OmIy/TRA=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_5.1.0-next.1584137946.d3cca899394af1f344a11026fa4ba019d7910f54_1584137947927_0.4971315322808212"},"_hasShrinkwrap":false,"publish_time":1584137948093,"_cnpm_publish_time":1584137948093,"_cnpmcore_publish_time":"2021-12-16T22:29:04.398Z"},"5.1.0-next.1580272327.b2ce5115cbff41682e8272cb224ce0bd77043a7f":{"name":"getmac","version":"5.1.0-next.1580272327.b2ce5115cbff41682e8272cb224ce0bd77043a7f","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["export-default","getmac","ifconfig","ipconfig","mac","mac-address","typed","types","typescript"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","githubsponsors","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"githubSponsorsUsername":"balupton","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"http://balupton.com"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"Isaac Huang","url":"http://caasih.net"},{"name":"zboszor","url":"https://github.com/zboszor"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/Ogdentrod"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=8"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["typescript","import"],"engines":false},{"description":"TypeScript compiled against ESNext for Node.js with Require for modules","directory":"edition-esnext","entry":"index.js","tags":["javascript","esnext","require"],"engines":{"node":"8 || 10 || 12 || 13"}}],"types":"source/index.ts","type":"commonjs","main":"edition-esnext/index.js","dependencies":{"@types/node":"^13.5.1"},"devDependencies":{"@typescript-eslint/eslint-plugin":"^2.18.0","@typescript-eslint/parser":"^2.18.0","assert-helpers":"^5.8.0","coffeelint":"^2.1.0","coffeescript":"^2.5.0","eslint":"^6.8.0","eslint-config-bevry":"^2.3.0","eslint-config-prettier":"^6.10.0","eslint-plugin-prettier":"^3.1.2","kava":"^4.4.0","prettier":"^1.19.1","projectz":"^1.19.0","surge":"^0.21.3","typedoc":"^0.16.9","typescript":"^3.7.5","valid-directory":"^1.6.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:edition-esnext","our:compile:edition-esnext":"tsc --module commonjs --target ESNext --outDir ./edition-esnext --project tsconfig.json && test -d edition-esnext/source && ( mv edition-esnext/source edition-temp && rm -Rf edition-esnext && mv edition-temp edition-esnext ) || true","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:docs && npm run our:meta:projectz","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:coffeelint && npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier && npm run our:verify:typescript","our:verify:coffeelint":"coffeelint ./source","our:verify:directory":"valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write ./source/** *.md","our:verify:typescript":"tsc --noEmit --project tsconfig.json","test":"node ./edition-esnext/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"gitHead":"b2ce5115cbff41682e8272cb224ce0bd77043a7f","readmeFilename":"README.md","_id":"getmac@5.1.0-next.1580272327.b2ce5115cbff41682e8272cb224ce0bd77043a7f","_nodeVersion":"12.14.1","_npmVersion":"6.13.4","dist":{"shasum":"c6004cf2f1c9abab48ffaace2bc8324381045681","size":7666,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-5.1.0-next.1580272327.b2ce5115cbff41682e8272cb224ce0bd77043a7f.tgz","integrity":"sha512-gK++gEDaGxPabmgLR1wZpTHA37F1ImpGcQsHjpDG+Dm+Xh+30I8G//yCFu7pAhJ/e8DGAweoQ0JjUL9iv4mwuQ=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_5.1.0-next.1580272327.b2ce5115cbff41682e8272cb224ce0bd77043a7f_1580272342114_0.32805475856353095"},"_hasShrinkwrap":false,"publish_time":1580272342288,"_cnpm_publish_time":1580272342288,"_cnpmcore_publish_time":"2021-12-16T22:29:04.656Z"},"5.1.0":{"name":"getmac","version":"5.1.0","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["export-default","getmac","ifconfig","ipconfig","mac","mac-address","typed","types","typescript"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","githubsponsors","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"githubSponsorsUsername":"balupton","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"http://balupton.com"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"Isaac Huang","url":"http://caasih.net"},{"name":"zboszor","url":"https://github.com/zboszor"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/Ogdentrod"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=8"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["typescript","import"],"engines":false},{"description":"TypeScript compiled against ESNext for Node.js with Require for modules","directory":"edition-esnext","entry":"index.js","tags":["javascript","esnext","require"],"engines":{"node":"8 || 10 || 12 || 13"}}],"types":"source/index.ts","type":"commonjs","main":"edition-esnext/index.js","dependencies":{"@types/node":"^13.5.1"},"devDependencies":{"@typescript-eslint/eslint-plugin":"^2.18.0","@typescript-eslint/parser":"^2.18.0","assert-helpers":"^5.8.0","coffeelint":"^2.1.0","coffeescript":"^2.5.0","eslint":"^6.8.0","eslint-config-bevry":"^2.3.0","eslint-config-prettier":"^6.10.0","eslint-plugin-prettier":"^3.1.2","kava":"^4.4.0","prettier":"^1.19.1","projectz":"^1.19.0","surge":"^0.21.3","typedoc":"^0.16.9","typescript":"^3.7.5","valid-directory":"^1.6.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:edition-esnext","our:compile:edition-esnext":"tsc --module commonjs --target ESNext --outDir ./edition-esnext --project tsconfig.json && test -d edition-esnext/source && ( mv edition-esnext/source edition-temp && rm -Rf edition-esnext && mv edition-temp edition-esnext ) || true","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:docs && npm run our:meta:projectz","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:coffeelint && npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier && npm run our:verify:typescript","our:verify:coffeelint":"coffeelint ./source","our:verify:directory":"valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write ./source/** *.md","our:verify:typescript":"tsc --noEmit --project tsconfig.json","test":"node ./edition-esnext/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"gitHead":"b2ce5115cbff41682e8272cb224ce0bd77043a7f","_id":"getmac@5.1.0","_nodeVersion":"12.14.1","_npmVersion":"6.13.4","dist":{"shasum":"0d5f872e1caffa25d5ec59baeaf42abc400d915c","size":7613,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-5.1.0.tgz","integrity":"sha512-hpZnhRQa2O2YbIPO1bX6vv7Zy7DyQXNH6tDpX/yfjhFl0AsAgEZZ1FqQ6e32CE+oKMykjp1yRJ5BQKMNEX5McQ=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_5.1.0_1580272326647_0.34804839120217457"},"_hasShrinkwrap":false,"publish_time":1580272326819,"_cnpm_publish_time":1580272326819,"_cnpmcore_publish_time":"2021-12-16T22:29:05.240Z"},"5.0.0":{"name":"getmac","version":"5.0.0","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["export-default","getmac","ifconfig","ipconfig","mac","mac-address","typed","types","typescript"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","githubsponsors","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"githubSponsorsUsername":"balupton","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"http://balupton.com"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"Isaac Huang","url":"http://caasih.net"},{"name":"zboszor","url":"https://github.com/zboszor"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=8"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["typescript","import"],"engines":false},{"description":"TypeScript compiled against ESNext for Node.js with Require for modules","directory":"edition-esnext","entry":"index.js","tags":["javascript","esnext","require"],"engines":{"node":"8 || 10 || 12 || 13"}}],"types":"source/index.ts","type":"commonjs","main":"edition-esnext/index.js","dependencies":{"@types/node":"^12.12.20"},"devDependencies":{"@typescript-eslint/eslint-plugin":"^2.12.0","@typescript-eslint/parser":"^2.12.0","assert-helpers":"^5.8.0","coffeelint":"^2.1.0","coffeescript":"^2.4.1","eslint":"^6.7.2","eslint-config-bevry":"^2.3.0","eslint-config-prettier":"^6.7.0","eslint-plugin-prettier":"^3.1.2","kava":"^4.4.0","prettier":"^1.19.1","projectz":"^1.19.0","surge":"^0.21.3","typedoc":"^0.15.5","typescript":"^3.7.3","valid-directory":"^1.6.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:edition-esnext","our:compile:edition-esnext":"tsc --module commonjs --target ESNext --outDir ./edition-esnext --project tsconfig.json && test -d edition-esnext/source && ( mv edition-esnext/source edition-temp && rm -Rf edition-esnext && mv edition-temp edition-esnext ) || true","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:docs && npm run our:meta:projectz","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:coffeelint && npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier && npm run our:verify:typescript","our:verify:coffeelint":"coffeelint ./source","our:verify:directory":"valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write ./source/**","our:verify:typescript":"tsc --noEmit --project tsconfig.json","test":"node ./edition-esnext/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"gitHead":"74d458ddaf7df56cbf5236ced566b1c149c448e8","_id":"getmac@5.0.0","_nodeVersion":"12.14.0","_npmVersion":"6.13.4","dist":{"shasum":"9c06cb9e28b2cb59357c4e186122a03f26731c5e","size":7469,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-5.0.0.tgz","integrity":"sha512-4Pz3rGNrwGkjXFirPWxXtRQAaId0iVQVIT/t9ROMPMDyc5I+WZS4qA+aiIDVHVdv0tpcoKGPKOlwoyqMUuXDXA=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_5.0.0_1576633018281_0.49670877965029514"},"_hasShrinkwrap":false,"publish_time":1576633018415,"_cnpm_publish_time":1576633018415,"_cnpmcore_publish_time":"2021-12-16T22:29:05.440Z"},"5.0.0-next.1576632944.74d458ddaf7df56cbf5236ced566b1c149c448e8":{"name":"getmac","version":"5.0.0-next.1576632944.74d458ddaf7df56cbf5236ced566b1c149c448e8","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["export-default","getmac","ifconfig","ipconfig","mac","mac-address","typed","types","typescript"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","githubsponsors","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"githubSponsorsUsername":"balupton","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"http://balupton.com"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"Isaac Huang","url":"http://caasih.net"},{"name":"zboszor","url":"https://github.com/zboszor"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=8"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["typescript","import"],"engines":false},{"description":"TypeScript compiled against ESNext for Node.js with Require for modules","directory":"edition-esnext","entry":"index.js","tags":["javascript","esnext","require"],"engines":{"node":"8 || 10 || 12 || 13"}}],"types":"source/index.ts","type":"commonjs","main":"edition-esnext/index.js","dependencies":{"@types/node":"^12.12.20"},"devDependencies":{"@typescript-eslint/eslint-plugin":"^2.12.0","@typescript-eslint/parser":"^2.12.0","assert-helpers":"^5.8.0","coffeelint":"^2.1.0","coffeescript":"^2.4.1","eslint":"^6.7.2","eslint-config-bevry":"^2.3.0","eslint-config-prettier":"^6.7.0","eslint-plugin-prettier":"^3.1.2","kava":"^4.4.0","prettier":"^1.19.1","projectz":"^1.19.0","surge":"^0.21.3","typedoc":"^0.15.5","typescript":"^3.7.3","valid-directory":"^1.6.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:edition-esnext","our:compile:edition-esnext":"tsc --module commonjs --target ESNext --outDir ./edition-esnext --project tsconfig.json && test -d edition-esnext/source && ( mv edition-esnext/source edition-temp && rm -Rf edition-esnext && mv edition-temp edition-esnext ) || true","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:docs && npm run our:meta:projectz","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:coffeelint && npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier && npm run our:verify:typescript","our:verify:coffeelint":"coffeelint ./source","our:verify:directory":"valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write ./source/**","our:verify:typescript":"tsc --noEmit --project tsconfig.json","test":"node ./edition-esnext/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"gitHead":"74d458ddaf7df56cbf5236ced566b1c149c448e8","readmeFilename":"README.md","_id":"getmac@5.0.0-next.1576632944.74d458ddaf7df56cbf5236ced566b1c149c448e8","_nodeVersion":"12.14.0","_npmVersion":"6.13.4","dist":{"shasum":"b2cad5c1e784ff857a822d58fe5de15206375a8b","size":7518,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-5.0.0-next.1576632944.74d458ddaf7df56cbf5236ced566b1c149c448e8.tgz","integrity":"sha512-CdT/yuSUIt4uaLyFZkGGdV5DIUzP2wrYe/wvP/JANwreR5QZF+5igXvzcOKF2IJotAVOZCQTdqtZo82tMc4qBg=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_5.0.0-next.1576632944.74d458ddaf7df56cbf5236ced566b1c149c448e8_1576632946015_0.05088523418125712"},"_hasShrinkwrap":false,"publish_time":1576632946117,"_cnpm_publish_time":1576632946117,"_cnpmcore_publish_time":"2021-12-16T22:29:05.633Z"},"4.4.0-next.1575882546.cf4fa0fa21e8e52a072bb2c6744e01309698d4f4":{"name":"getmac","version":"4.4.0-next.1575882546.cf4fa0fa21e8e52a072bb2c6744e01309698d4f4","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["mac","mac-address","ifconfig","ipconfig","getmac"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","githubsponsors","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"githubSponsorsUsername":"balupton","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"http://balupton.com"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"Isaac Huang","url":"http://caasih.net"},{"name":"zboszor","url":"https://github.com/zboszor"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"dependabot-preview[bot]","url":"http://github.com/apps/dependabot-preview"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=8"},"editions":[{"description":"typescript source code with import for modules","directory":"source","entry":"index.ts","tags":["typescript","import"],"engines":false},{"description":"typescript compiled for node.js 12 with require for modules","directory":"edition-node-12","entry":"index.js","tags":["javascript","require"],"engines":{"node":"8 || 10 || 12","browsers":false}}],"types":"source/index.ts","type":"commonjs","main":"edition-node-12/index.js","dependencies":{"@types/node":"^12.12.14"},"devDependencies":{"@babel/cli":"^7.7.5","@babel/core":"^7.7.5","@babel/plugin-proposal-class-properties":"^7.7.4","@babel/plugin-proposal-object-rest-spread":"^7.7.4","@babel/plugin-proposal-optional-chaining":"^7.7.5","@babel/preset-env":"^7.7.6","@babel/preset-typescript":"^7.7.4","@typescript-eslint/eslint-plugin":"^2.10.0","@typescript-eslint/parser":"^2.10.0","assert-helpers":"^5.8.0","babel-plugin-add-module-exports":"^1.0.2","coffeelint":"^2.1.0","coffeescript":"^2.4.1","eslint":"^6.7.2","eslint-config-bevry":"^2.3.0","eslint-config-prettier":"^6.7.0","eslint-plugin-prettier":"^3.1.1","kava":"^4.3.0","prettier":"^1.19.1","projectz":"^1.15.0","surge":"^0.21.3","typedoc":"^0.15.4","typescript":"^3.7.3","valid-directory":"^1.5.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:edition-node-12","our:compile:edition-node-12":"env BABEL_ENV=edition-node-12 babel --extensions \".ts,.tsx\" --out-dir ./edition-node-12 ./source","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:docs && npm run our:meta:projectz","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:coffeelint && npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier && npm run our:verify:typescript","our:verify:coffeelint":"coffeelint ./source","our:verify:directory":"npx valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write ./source/**","our:verify:typescript":"tsc --noEmit --project tsconfig.json","test":"node ./edition-node-12/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"babel":{"env":{"edition-node-12":{"sourceType":"module","presets":[["@babel/preset-env",{"targets":{"node":"12"},"modules":"commonjs"}],"@babel/preset-typescript"],"plugins":["@babel/proposal-object-rest-spread","@babel/plugin-proposal-optional-chaining","@babel/proposal-class-properties","add-module-exports"]}}},"gitHead":"cf4fa0fa21e8e52a072bb2c6744e01309698d4f4","readmeFilename":"README.md","_id":"getmac@4.4.0-next.1575882546.cf4fa0fa21e8e52a072bb2c6744e01309698d4f4","_nodeVersion":"12.13.1","_npmVersion":"6.12.1","dist":{"shasum":"f82dfbdcfa88ad559bc110df2c63cb1283b10743","size":7523,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-4.4.0-next.1575882546.cf4fa0fa21e8e52a072bb2c6744e01309698d4f4.tgz","integrity":"sha512-5vtgugCqW1JNBBJE3Ozr/RYNdnEAU/w+UocqaagyURgkSpW/vIFv3Eolb4yZneNcAr2QSmopz1l/sGXeKgttFQ=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_4.4.0-next.1575882546.cf4fa0fa21e8e52a072bb2c6744e01309698d4f4_1575882548161_0.42204553119545163"},"_hasShrinkwrap":false,"publish_time":1575882548275,"_cnpm_publish_time":1575882548275,"_cnpmcore_publish_time":"2021-12-16T22:29:05.842Z"},"4.4.0":{"name":"getmac","version":"4.4.0","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["mac","mac-address","ifconfig","ipconfig","getmac"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","githubsponsors","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"githubSponsorsUsername":"balupton","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"http://balupton.com"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"Isaac Huang","url":"http://caasih.net"},{"name":"zboszor","url":"https://github.com/zboszor"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"dependabot-preview[bot]","url":"http://github.com/apps/dependabot-preview"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=8"},"editions":[{"description":"typescript source code with import for modules","directory":"source","entry":"index.ts","tags":["typescript","import"],"engines":false},{"description":"typescript compiled for node.js 12 with require for modules","directory":"edition-node-12","entry":"index.js","tags":["javascript","require"],"engines":{"node":"8 || 10 || 12","browsers":false}}],"types":"source/index.ts","type":"commonjs","main":"edition-node-12/index.js","dependencies":{"@types/node":"^12.12.14"},"devDependencies":{"@babel/cli":"^7.7.5","@babel/core":"^7.7.5","@babel/plugin-proposal-class-properties":"^7.7.4","@babel/plugin-proposal-object-rest-spread":"^7.7.4","@babel/plugin-proposal-optional-chaining":"^7.7.5","@babel/preset-env":"^7.7.6","@babel/preset-typescript":"^7.7.4","@typescript-eslint/eslint-plugin":"^2.10.0","@typescript-eslint/parser":"^2.10.0","assert-helpers":"^5.8.0","babel-plugin-add-module-exports":"^1.0.2","coffeelint":"^2.1.0","coffeescript":"^2.4.1","eslint":"^6.7.2","eslint-config-bevry":"^2.3.0","eslint-config-prettier":"^6.7.0","eslint-plugin-prettier":"^3.1.1","kava":"^4.3.0","prettier":"^1.19.1","projectz":"^1.15.0","surge":"^0.21.3","typedoc":"^0.15.4","typescript":"^3.7.3","valid-directory":"^1.5.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:edition-node-12","our:compile:edition-node-12":"env BABEL_ENV=edition-node-12 babel --extensions \".ts,.tsx\" --out-dir ./edition-node-12 ./source","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:docs && npm run our:meta:projectz","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:coffeelint && npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier && npm run our:verify:typescript","our:verify:coffeelint":"coffeelint ./source","our:verify:directory":"npx valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write ./source/**","our:verify:typescript":"tsc --noEmit --project tsconfig.json","test":"node ./edition-node-12/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"babel":{"env":{"edition-node-12":{"sourceType":"module","presets":[["@babel/preset-env",{"targets":{"node":"12"},"modules":"commonjs"}],"@babel/preset-typescript"],"plugins":["@babel/proposal-object-rest-spread","@babel/plugin-proposal-optional-chaining","@babel/proposal-class-properties","add-module-exports"]}}},"gitHead":"f15bd0ba7453987cebc76e9bdbc5853d037b213a","_id":"getmac@4.4.0","_nodeVersion":"12.13.1","_npmVersion":"6.12.1","dist":{"shasum":"805c5106e4de912839870866168e79e13c41f272","size":7435,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-4.4.0.tgz","integrity":"sha512-QZNrz6WrF2aMe7eg6IDnIaA0iK31Zt51Yi9U6hOuy5bcI6QlvmKXF+ozcrfT5+GSziWxumUy2Q6MiaFta0XcEg=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_4.4.0_1575882450389_0.9390148045462956"},"_hasShrinkwrap":false,"publish_time":1575882450508,"_cnpm_publish_time":1575882450508,"_cnpmcore_publish_time":"2021-12-16T22:29:06.073Z"},"4.3.0":{"name":"getmac","version":"4.3.0","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["mac","mac-address","ifconfig","ipconfig","getmac"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"http://balupton.com"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"Isaac Huang","url":"http://caasih.net"},{"name":"zboszor","url":"https://github.com/zboszor"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"dependabot-preview[bot]","url":"http://github.com/apps/dependabot-preview"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=8"},"editions":[{"description":"typescript source code with import for modules","directory":"source","entry":"index.ts","tags":["typescript","import"],"engines":false},{"description":"typescript compiled for node.js 12 with require for modules","directory":"edition-node-12","entry":"index.js","tags":["javascript","require"],"engines":{"node":"8 || 10 || 12","browsers":false}}],"types":"source/index.ts","main":"edition-node-12/index.js","dependencies":{"@types/node":"^12.12.14"},"devDependencies":{"@babel/cli":"^7.7.4","@babel/core":"^7.7.4","@babel/plugin-proposal-class-properties":"^7.7.4","@babel/plugin-proposal-object-rest-spread":"^7.7.4","@babel/plugin-proposal-optional-chaining":"^7.7.4","@babel/preset-env":"^7.7.4","@babel/preset-typescript":"^7.7.4","@typescript-eslint/eslint-plugin":"^2.9.0","@typescript-eslint/parser":"^2.9.0","assert-helpers":"^5.7.0","babel-plugin-add-module-exports":"^1.0.2","coffeelint":"^2.1.0","coffeescript":"^2.4.1","eslint":"^6.7.2","eslint-config-bevry":"^2.2.0","eslint-config-prettier":"^6.7.0","eslint-plugin-prettier":"^3.1.1","kava":"^4.2.0","prettier":"^1.19.1","projectz":"^1.13.0","surge":"^0.21.3","typedoc":"^0.15.3","typescript":"^3.7.2","valid-directory":"^1.4.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:edition-node-12","our:compile:edition-node-12":"env BABEL_ENV=edition-node-12 babel --extensions \".ts,.tsx\" --out-dir ./edition-node-12 ./source","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:docs && npm run our:meta:projectz","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:coffeelint && npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier && npm run our:verify:typescript","our:verify:coffeelint":"coffeelint ./source","our:verify:directory":"npx valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write ./source/**","our:verify:typescript":"tsc --noEmit --project .","test":"node ./edition-node-12/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"babel":{"env":{"edition-node-12":{"sourceType":"module","presets":[["@babel/preset-env",{"targets":{"node":"12"},"modules":"commonjs"}],"@babel/preset-typescript"],"plugins":["@babel/proposal-object-rest-spread","@babel/plugin-proposal-optional-chaining","@babel/proposal-class-properties","add-module-exports"]}}},"gitHead":"d85cbc0ce982fdb9ceedaa503061cb435f76381c","_id":"getmac@4.3.0","_nodeVersion":"12.13.1","_npmVersion":"6.12.1","dist":{"shasum":"302c222ec2403ea6f6a1e5d437992c10ec5f2eb3","size":7402,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-4.3.0.tgz","integrity":"sha512-B0YCdz3bHMD5C+HxnD+iZFfkNDMLqfge+BYXEO90lKzzRRjrJPJ0N533WWJVlSeUzWmXprc1oxX0QBcpum1CAA=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_4.3.0_1575175980067_0.37328658264217807"},"_hasShrinkwrap":false,"publish_time":1575175980247,"_cnpm_publish_time":1575175980247,"_cnpmcore_publish_time":"2021-12-16T22:29:06.268Z"},"4.3.0-next.1575175894.d85cbc0ce982fdb9ceedaa503061cb435f76381c":{"name":"getmac","version":"4.3.0-next.1575175894.d85cbc0ce982fdb9ceedaa503061cb435f76381c","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["mac","mac-address","ifconfig","ipconfig","getmac"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"http://balupton.com"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"Isaac Huang","url":"http://caasih.net"},{"name":"zboszor","url":"https://github.com/zboszor"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"dependabot-preview[bot]","url":"http://github.com/apps/dependabot-preview"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=8"},"editions":[{"description":"typescript source code with import for modules","directory":"source","entry":"index.ts","tags":["typescript","import"],"engines":false},{"description":"typescript compiled for node.js 12 with require for modules","directory":"edition-node-12","entry":"index.js","tags":["javascript","require"],"engines":{"node":"8 || 10 || 12","browsers":false}}],"types":"source/index.ts","main":"edition-node-12/index.js","dependencies":{"@types/node":"^12.12.14"},"devDependencies":{"@babel/cli":"^7.7.4","@babel/core":"^7.7.4","@babel/plugin-proposal-class-properties":"^7.7.4","@babel/plugin-proposal-object-rest-spread":"^7.7.4","@babel/plugin-proposal-optional-chaining":"^7.7.4","@babel/preset-env":"^7.7.4","@babel/preset-typescript":"^7.7.4","@typescript-eslint/eslint-plugin":"^2.9.0","@typescript-eslint/parser":"^2.9.0","assert-helpers":"^5.7.0","babel-plugin-add-module-exports":"^1.0.2","coffeelint":"^2.1.0","coffeescript":"^2.4.1","eslint":"^6.7.2","eslint-config-bevry":"^2.2.0","eslint-config-prettier":"^6.7.0","eslint-plugin-prettier":"^3.1.1","kava":"^4.2.0","prettier":"^1.19.1","projectz":"^1.13.0","surge":"^0.21.3","typedoc":"^0.15.3","typescript":"^3.7.2","valid-directory":"^1.4.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:edition-node-12","our:compile:edition-node-12":"env BABEL_ENV=edition-node-12 babel --extensions \".ts,.tsx\" --out-dir ./edition-node-12 ./source","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:docs && npm run our:meta:projectz","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:coffeelint && npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier && npm run our:verify:typescript","our:verify:coffeelint":"coffeelint ./source","our:verify:directory":"npx valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write ./source/**","our:verify:typescript":"tsc --noEmit --project .","test":"node ./edition-node-12/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"babel":{"env":{"edition-node-12":{"sourceType":"module","presets":[["@babel/preset-env",{"targets":{"node":"12"},"modules":"commonjs"}],"@babel/preset-typescript"],"plugins":["@babel/proposal-object-rest-spread","@babel/plugin-proposal-optional-chaining","@babel/proposal-class-properties","add-module-exports"]}}},"gitHead":"d85cbc0ce982fdb9ceedaa503061cb435f76381c","readmeFilename":"README.md","_id":"getmac@4.3.0-next.1575175894.d85cbc0ce982fdb9ceedaa503061cb435f76381c","_nodeVersion":"12.13.1","_npmVersion":"6.12.1","dist":{"shasum":"b92db1832c1333bcbdb74737f797ee4ab42e1e52","size":7453,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-4.3.0-next.1575175894.d85cbc0ce982fdb9ceedaa503061cb435f76381c.tgz","integrity":"sha512-KSI/sgqbHI8FoSrXyqun1AIF0gqsnMSbjNh7HQkiQ6izNO6IgH1fIjAC6iRGOGXTvtsSWaQZmE/PHdl0yHtFtQ=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_4.3.0-next.1575175894.d85cbc0ce982fdb9ceedaa503061cb435f76381c_1575175896363_0.9834467603300181"},"_hasShrinkwrap":false,"publish_time":1575175896494,"_cnpm_publish_time":1575175896494,"_cnpmcore_publish_time":"2021-12-16T22:29:06.505Z"},"4.2.0":{"name":"getmac","version":"4.2.0","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["mac","mac-address","ifconfig","ipconfig","getmac"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"http://balupton.com"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"Isaac Huang","url":"http://caasih.net"},{"name":"zboszor","url":"https://github.com/zboszor"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"dependabot-preview[bot]","url":"http://github.com/apps/dependabot-preview"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=8"},"editions":[{"description":"typescript source code with import for modules","directory":"source","entry":"index.ts","tags":["typescript","import"],"engines":false},{"description":"typescript compiled for node.js 12 with require for modules","directory":"edition-node-12","entry":"index.js","tags":["javascript","require"],"engines":{"node":"8 || 10 || 12","browsers":false}}],"types":"source/index.ts","main":"edition-node-12/index.js","dependencies":{"@types/node":"^12.12.14"},"devDependencies":{"@babel/cli":"^7.7.4","@babel/core":"^7.7.4","@babel/plugin-proposal-class-properties":"^7.7.4","@babel/plugin-proposal-object-rest-spread":"^7.7.4","@babel/plugin-proposal-optional-chaining":"^7.7.4","@babel/preset-env":"^7.7.4","@babel/preset-typescript":"^7.7.4","@typescript-eslint/eslint-plugin":"^2.9.0","@typescript-eslint/parser":"^2.9.0","assert-helpers":"^5.6.0","babel-plugin-add-module-exports":"^1.0.2","coffeelint":"^2.1.0","coffeescript":"^2.4.1","eslint":"^6.7.2","eslint-config-bevry":"^2.1.0","eslint-config-prettier":"^6.7.0","eslint-plugin-prettier":"^3.1.1","kava":"^4.1.0","prettier":"^1.19.1","projectz":"^1.12.0","surge":"^0.21.3","typedoc":"^0.15.3","typescript":"^3.7.2","valid-directory":"^1.3.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:edition-node-12","our:compile:edition-node-12":"env BABEL_ENV=edition-node-12 babel --extensions \".ts,.tsx\" --out-dir ./edition-node-12 ./source","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:docs && npm run our:meta:projectz","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:coffeelint && npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier && npm run our:verify:typescript","our:verify:coffeelint":"coffeelint ./source","our:verify:directory":"npx valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write ./source/**","our:verify:typescript":"tsc --noEmit --project .","test":"node ./edition-node-12/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"babel":{"env":{"edition-node-12":{"sourceType":"module","presets":[["@babel/preset-env",{"targets":{"node":"12"},"modules":"commonjs"}],"@babel/preset-typescript"],"plugins":["@babel/proposal-object-rest-spread","@babel/plugin-proposal-optional-chaining","@babel/proposal-class-properties","add-module-exports"]}}},"gitHead":"5933e9d0e89af118648a0f3007ec4512fca2a257","_id":"getmac@4.2.0","_nodeVersion":"12.13.1","_npmVersion":"6.12.1","dist":{"shasum":"8b9d73b1629cd2b161c0ffc1feb83bb865352dd5","size":7392,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-4.2.0.tgz","integrity":"sha512-7wMCyHRccfz5nixv9tiLtoXn+dgAqgSPcNKHxR7C5AAfsYPboQRoXDC7PO2tlziXaoWKRjdB54GMCoacTV3UZQ=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_4.2.0_1575149052949_0.22978602910155654"},"_hasShrinkwrap":false,"publish_time":1575149053120,"_cnpm_publish_time":1575149053120,"_cnpmcore_publish_time":"2021-12-16T22:29:06.723Z"},"4.2.0-next.1575148972.5933e9d0e89af118648a0f3007ec4512fca2a257":{"name":"getmac","version":"4.2.0-next.1575148972.5933e9d0e89af118648a0f3007ec4512fca2a257","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["mac","mac-address","ifconfig","ipconfig","getmac"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"http://balupton.com"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"Isaac Huang","url":"http://caasih.net"},{"name":"zboszor","url":"https://github.com/zboszor"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"dependabot-preview[bot]","url":"http://github.com/apps/dependabot-preview"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=8"},"editions":[{"description":"typescript source code with import for modules","directory":"source","entry":"index.ts","tags":["typescript","import"],"engines":false},{"description":"typescript compiled for node.js 12 with require for modules","directory":"edition-node-12","entry":"index.js","tags":["javascript","require"],"engines":{"node":"8 || 10 || 12","browsers":false}}],"types":"source/index.ts","main":"edition-node-12/index.js","dependencies":{"@types/node":"^12.12.14"},"devDependencies":{"@babel/cli":"^7.7.4","@babel/core":"^7.7.4","@babel/plugin-proposal-class-properties":"^7.7.4","@babel/plugin-proposal-object-rest-spread":"^7.7.4","@babel/plugin-proposal-optional-chaining":"^7.7.4","@babel/preset-env":"^7.7.4","@babel/preset-typescript":"^7.7.4","@typescript-eslint/eslint-plugin":"^2.9.0","@typescript-eslint/parser":"^2.9.0","assert-helpers":"^5.6.0","babel-plugin-add-module-exports":"^1.0.2","coffeelint":"^2.1.0","coffeescript":"^2.4.1","eslint":"^6.7.2","eslint-config-bevry":"^2.1.0","eslint-config-prettier":"^6.7.0","eslint-plugin-prettier":"^3.1.1","kava":"^4.1.0","prettier":"^1.19.1","projectz":"^1.12.0","surge":"^0.21.3","typedoc":"^0.15.3","typescript":"^3.7.2","valid-directory":"^1.3.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:edition-node-12","our:compile:edition-node-12":"env BABEL_ENV=edition-node-12 babel --extensions \".ts,.tsx\" --out-dir ./edition-node-12 ./source","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:docs && npm run our:meta:projectz","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:coffeelint && npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier && npm run our:verify:typescript","our:verify:coffeelint":"coffeelint ./source","our:verify:directory":"npx valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write ./source/**","our:verify:typescript":"tsc --noEmit --project .","test":"node ./edition-node-12/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"babel":{"env":{"edition-node-12":{"sourceType":"module","presets":[["@babel/preset-env",{"targets":{"node":"12"},"modules":"commonjs"}],"@babel/preset-typescript"],"plugins":["@babel/proposal-object-rest-spread","@babel/plugin-proposal-optional-chaining","@babel/proposal-class-properties","add-module-exports"]}}},"gitHead":"5933e9d0e89af118648a0f3007ec4512fca2a257","readmeFilename":"README.md","_id":"getmac@4.2.0-next.1575148972.5933e9d0e89af118648a0f3007ec4512fca2a257","_nodeVersion":"12.13.1","_npmVersion":"6.12.1","dist":{"shasum":"33d6d70a8436b7291d0d3581b457a8c62e70b3fa","size":7445,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-4.2.0-next.1575148972.5933e9d0e89af118648a0f3007ec4512fca2a257.tgz","integrity":"sha512-/cvTfWg1enYIIEu0JEBHWiTdtdPLlx30rPGfazhSNbIUnOzW6csPGkD5w13t9uoqpNjZBkizWRROqPRwZ39DcA=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_4.2.0-next.1575148972.5933e9d0e89af118648a0f3007ec4512fca2a257_1575148973730_0.3022622954822043"},"_hasShrinkwrap":false,"publish_time":1575148973895,"_cnpm_publish_time":1575148973895,"_cnpmcore_publish_time":"2021-12-16T22:29:07.351Z"},"4.1.0-next.1574657320.1595a7b86761b5ad30ba8a6363d9beca4a11c946":{"name":"getmac","version":"4.1.0-next.1574657320.1595a7b86761b5ad30ba8a6363d9beca4a11c946","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["mac","mac-address","ifconfig","ipconfig","getmac"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"http://balupton.com"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"Isaac Huang","url":"http://caasih.net"},{"name":"zboszor","url":"https://github.com/zboszor"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"dependabot-preview[bot]","url":"http://github.com/apps/dependabot-preview"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=8"},"editions":[{"description":"typescript source code with import for modules","directory":"source","entry":"index.ts","tags":["typescript","import"],"engines":false},{"description":"typescript compiled for node.js 12 with require for modules","directory":"edition-node-12","entry":"index.js","tags":["javascript","require"],"engines":{"node":"8 || 10 || 12","browsers":false}}],"bin":{"getmac-node":"edition-node-12/bin.js"},"types":"source/index.ts","main":"edition-node-12/index.js","dependencies":{"@types/node":"^12.12.8"},"devDependencies":{"@babel/cli":"^7.7.0","@babel/core":"^7.7.2","@babel/plugin-proposal-class-properties":"^7.7.0","@babel/plugin-proposal-object-rest-spread":"^7.6.2","@babel/plugin-proposal-optional-chaining":"^7.6.0","@babel/preset-env":"^7.7.1","@babel/preset-typescript":"^7.7.2","@typescript-eslint/eslint-plugin":"^2.7.0","@typescript-eslint/parser":"^2.7.0","assert-helpers":"5.4.0","babel-plugin-add-module-exports":"^1.0.2","coffeelint":"^2.1.0","coffeescript":"^2.4.1","eslint":"^6.6.0","eslint-config-bevry":"^1.2.1","eslint-config-prettier":"^6.6.0","eslint-plugin-prettier":"^3.1.1","kava":"4.0.0","prettier":"^1.19.1","projectz":"^1.10.0","surge":"^0.21.3","typedoc":"^0.15.2","typescript":"^3.7.2","valid-directory":"^1.1.1"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:edition-node-12","our:compile:edition-node-12":"env BABEL_ENV=edition-node-12 babel --extensions \".ts,.tsx\" --out-dir ./edition-node-12 ./source","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:docs && npm run our:meta:projectz","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:coffeelint && npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier && npm run our:verify:typescript","our:verify:coffeelint":"coffeelint ./source","our:verify:directory":"npx valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write ./source/**","our:verify:typescript":"tsc --noEmit --project .","test":"node ./edition-node-12/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"babel":{"env":{"edition-node-12":{"sourceType":"module","presets":[["@babel/preset-env",{"targets":{"node":"12"},"modules":"commonjs"}],"@babel/preset-typescript"],"plugins":["@babel/proposal-object-rest-spread","@babel/plugin-proposal-optional-chaining","@babel/proposal-class-properties","add-module-exports"]}}},"gitHead":"1595a7b86761b5ad30ba8a6363d9beca4a11c946","readmeFilename":"README.md","_id":"getmac@4.1.0-next.1574657320.1595a7b86761b5ad30ba8a6363d9beca4a11c946","_nodeVersion":"12.13.1","_npmVersion":"6.12.1","dist":{"shasum":"c96aabb36d8b146f32ca00bb9e85fd099b9787cc","size":7475,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-4.1.0-next.1574657320.1595a7b86761b5ad30ba8a6363d9beca4a11c946.tgz","integrity":"sha512-yfwy35bYcVueZyARAE32mVptMCtApQMXZ+r8cFyEgc0iGku7jLGA6PH9SVCA+GcYkHfcWncGQnLFtmU/8Ck6Nw=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_4.1.0-next.1574657320.1595a7b86761b5ad30ba8a6363d9beca4a11c946_1574657321888_0.6713417887059305"},"_hasShrinkwrap":false,"publish_time":1574657322025,"_cnpm_publish_time":1574657322025,"_cnpmcore_publish_time":"2021-12-16T22:29:07.545Z"},"4.1.0-next.1574056154.35e833faa7ba7c5eec6e7ecc11133f7801e43c39":{"name":"getmac","version":"4.1.0-next.1574056154.35e833faa7ba7c5eec6e7ecc11133f7801e43c39","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["mac","mac-address","ifconfig","ipconfig","getmac"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"http://balupton.com"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"Isaac Huang","url":"http://caasih.net"},{"name":"zboszor","url":"https://github.com/zboszor"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"dependabot-preview[bot]","url":"http://github.com/apps/dependabot-preview"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=8"},"editions":[{"description":"typescript source code with import for modules","directory":"source","entry":"index.ts","tags":["typescript","import"],"engines":false},{"description":"typescript compiled for node.js 12 with require for modules","directory":"edition-node-12","entry":"index.js","tags":["javascript","require"],"engines":{"node":"8 || 10 || 12","browsers":false}}],"bin":{"getmac-node":"edition-node-12/bin.js"},"types":"source/index.ts","main":"edition-node-12/index.js","dependencies":{"@types/node":"^12.12.8"},"devDependencies":{"@babel/cli":"^7.7.0","@babel/core":"^7.7.2","@babel/plugin-proposal-class-properties":"^7.7.0","@babel/plugin-proposal-object-rest-spread":"^7.6.2","@babel/plugin-proposal-optional-chaining":"^7.6.0","@babel/preset-env":"^7.7.1","@babel/preset-typescript":"^7.7.2","@typescript-eslint/eslint-plugin":"^2.7.0","@typescript-eslint/parser":"^2.7.0","assert-helpers":"5.4.0","babel-plugin-add-module-exports":"^1.0.2","coffeelint":"^2.1.0","coffeescript":"^2.4.1","eslint":"^6.6.0","eslint-config-bevry":"^1.2.1","eslint-config-prettier":"^6.6.0","eslint-plugin-prettier":"^3.1.1","kava":"4.0.0","prettier":"^1.19.1","projectz":"^1.10.0","surge":"^0.21.3","typedoc":"^0.15.2","typescript":"^3.7.2","valid-directory":"^1.1.1"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:edition-node-12","our:compile:edition-node-12":"env BABEL_ENV=edition-node-12 babel --extensions \".ts,.tsx\" --out-dir ./edition-node-12 ./source","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:docs && npm run our:meta:projectz","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:coffeelint && npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier && npm run our:verify:typescript","our:verify:coffeelint":"coffeelint ./source","our:verify:directory":"npx valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write ./source/**","our:verify:typescript":"tsc --noEmit --project .","test":"node ./edition-node-12/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"babel":{"env":{"edition-node-12":{"sourceType":"module","presets":[["@babel/preset-env",{"targets":{"node":"12"},"modules":"commonjs"}],"@babel/preset-typescript"],"plugins":["@babel/proposal-object-rest-spread","@babel/plugin-proposal-optional-chaining","@babel/proposal-class-properties","add-module-exports"]}}},"gitHead":"35e833faa7ba7c5eec6e7ecc11133f7801e43c39","readmeFilename":"README.md","_id":"getmac@4.1.0-next.1574056154.35e833faa7ba7c5eec6e7ecc11133f7801e43c39","_nodeVersion":"12.13.0","_npmVersion":"6.12.0","dist":{"shasum":"140f7028a2f60aec86f0080c362780b8e4787216","size":7439,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-4.1.0-next.1574056154.35e833faa7ba7c5eec6e7ecc11133f7801e43c39.tgz","integrity":"sha512-QLBemRSJFOJ3W0KC5MkuhCviZNUSlVVwHA3RRMN+wbziyqhCCyy8xfm3UhmC+9u9vKl+AOyBXgrISAkUD3uhZw=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_4.1.0-next.1574056154.35e833faa7ba7c5eec6e7ecc11133f7801e43c39_1574056156734_0.387967578215219"},"_hasShrinkwrap":false,"publish_time":1574056156858,"_cnpm_publish_time":1574056156858,"_cnpmcore_publish_time":"2021-12-16T22:29:07.794Z"},"4.1.0":{"name":"getmac","version":"4.1.0","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["mac","mac-address","ifconfig","ipconfig","getmac"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"http://balupton.com"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"Isaac Huang","url":"http://caasih.net"},{"name":"zboszor","url":"https://github.com/zboszor"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"dependabot-preview[bot]","url":"http://github.com/apps/dependabot-preview"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=8"},"editions":[{"description":"typescript source code with import for modules","directory":"source","entry":"index.ts","tags":["typescript","import"],"engines":false},{"description":"typescript compiled for node.js 12 with require for modules","directory":"edition-node-12","entry":"index.js","tags":["javascript","require"],"engines":{"node":"8 || 10 || 12","browsers":false}}],"bin":{"getmac-node":"edition-node-12/bin.js"},"types":"source/index.ts","main":"edition-node-12/index.js","dependencies":{"@types/node":"^12.12.8"},"devDependencies":{"@babel/cli":"^7.7.0","@babel/core":"^7.7.2","@babel/plugin-proposal-class-properties":"^7.7.0","@babel/plugin-proposal-object-rest-spread":"^7.6.2","@babel/plugin-proposal-optional-chaining":"^7.6.0","@babel/preset-env":"^7.7.1","@babel/preset-typescript":"^7.7.2","@typescript-eslint/eslint-plugin":"^2.7.0","@typescript-eslint/parser":"^2.7.0","assert-helpers":"5.4.0","babel-plugin-add-module-exports":"^1.0.2","coffeelint":"^2.1.0","coffeescript":"^2.4.1","eslint":"^6.6.0","eslint-config-bevry":"^1.2.1","eslint-config-prettier":"^6.6.0","eslint-plugin-prettier":"^3.1.1","kava":"4.0.0","prettier":"^1.19.1","projectz":"^1.10.0","surge":"^0.21.3","typedoc":"^0.15.2","typescript":"^3.7.2","valid-directory":"^1.1.1"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:edition-node-12","our:compile:edition-node-12":"env BABEL_ENV=edition-node-12 babel --extensions \".ts,.tsx\" --out-dir ./edition-node-12 ./source","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:docs && npm run our:meta:projectz","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:coffeelint && npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier && npm run our:verify:typescript","our:verify:coffeelint":"coffeelint ./source","our:verify:directory":"npx valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write ./source/**","our:verify:typescript":"tsc --noEmit --project .","test":"node ./edition-node-12/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"babel":{"env":{"edition-node-12":{"sourceType":"module","presets":[["@babel/preset-env",{"targets":{"node":"12"},"modules":"commonjs"}],"@babel/preset-typescript"],"plugins":["@babel/proposal-object-rest-spread","@babel/plugin-proposal-optional-chaining","@babel/proposal-class-properties","add-module-exports"]}}},"gitHead":"e516da17b04540be5dff476766f997cc59dcdbee","_id":"getmac@4.1.0","_nodeVersion":"12.13.0","_npmVersion":"6.12.0","dist":{"shasum":"7989e127e1e5eb7077228d0f2398425140032524","size":7424,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-4.1.0.tgz","integrity":"sha512-dN1KG4ffj3koAhxD8wB1eQPdyKpq03eEDvX4DRR00pRRjjk1oOhwLjlU1zZd7ufyk6veb9Bj4v84rmu+0VawXw=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_4.1.0_1574050751395_0.9018014719550032"},"_hasShrinkwrap":false,"publish_time":1574050751547,"_cnpm_publish_time":1574050751547,"_cnpmcore_publish_time":"2021-12-16T22:29:08.151Z"},"4.1.0-next.1574050696.e516da17b04540be5dff476766f997cc59dcdbee":{"name":"getmac","version":"4.1.0-next.1574050696.e516da17b04540be5dff476766f997cc59dcdbee","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["mac","mac-address","ifconfig","ipconfig","getmac"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"http://balupton.com"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"Isaac Huang","url":"http://caasih.net"},{"name":"zboszor","url":"https://github.com/zboszor"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"dependabot-preview[bot]","url":"http://github.com/apps/dependabot-preview"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=8"},"editions":[{"description":"typescript source code with import for modules","directory":"source","entry":"index.ts","tags":["typescript","import"],"engines":false},{"description":"typescript compiled for node.js 12 with require for modules","directory":"edition-node-12","entry":"index.js","tags":["javascript","require"],"engines":{"node":"8 || 10 || 12","browsers":false}}],"bin":{"getmac-node":"edition-node-12/bin.js"},"types":"source/index.ts","main":"edition-node-12/index.js","dependencies":{"@types/node":"^12.12.8"},"devDependencies":{"@babel/cli":"^7.7.0","@babel/core":"^7.7.2","@babel/plugin-proposal-class-properties":"^7.7.0","@babel/plugin-proposal-object-rest-spread":"^7.6.2","@babel/plugin-proposal-optional-chaining":"^7.6.0","@babel/preset-env":"^7.7.1","@babel/preset-typescript":"^7.7.2","@typescript-eslint/eslint-plugin":"^2.7.0","@typescript-eslint/parser":"^2.7.0","assert-helpers":"5.4.0","babel-plugin-add-module-exports":"^1.0.2","coffeelint":"^2.1.0","coffeescript":"^2.4.1","eslint":"^6.6.0","eslint-config-bevry":"^1.2.1","eslint-config-prettier":"^6.6.0","eslint-plugin-prettier":"^3.1.1","kava":"4.0.0","prettier":"^1.19.1","projectz":"^1.10.0","surge":"^0.21.3","typedoc":"^0.15.2","typescript":"^3.7.2","valid-directory":"^1.1.1"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:edition-node-12","our:compile:edition-node-12":"env BABEL_ENV=edition-node-12 babel --extensions \".ts,.tsx\" --out-dir ./edition-node-12 ./source","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:docs && npm run our:meta:projectz","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:coffeelint && npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier && npm run our:verify:typescript","our:verify:coffeelint":"coffeelint ./source","our:verify:directory":"npx valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write ./source/**","our:verify:typescript":"tsc --noEmit --project .","test":"node ./edition-node-12/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"babel":{"env":{"edition-node-12":{"sourceType":"module","presets":[["@babel/preset-env",{"targets":{"node":"12"},"modules":"commonjs"}],"@babel/preset-typescript"],"plugins":["@babel/proposal-object-rest-spread","@babel/plugin-proposal-optional-chaining","@babel/proposal-class-properties","add-module-exports"]}}},"gitHead":"e516da17b04540be5dff476766f997cc59dcdbee","readmeFilename":"README.md","_id":"getmac@4.1.0-next.1574050696.e516da17b04540be5dff476766f997cc59dcdbee","_nodeVersion":"12.13.0","_npmVersion":"6.12.0","dist":{"shasum":"ccd8fb45a552698063cd488f45fef77f48a518f9","size":7477,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-4.1.0-next.1574050696.e516da17b04540be5dff476766f997cc59dcdbee.tgz","integrity":"sha512-SaT8BPgtcn8dD+abRcIm2w9CU2c1ZMRpd6HB+gWlEmNhfANstTq52MdCtllVfIG/N6Qgz+yaC0SPojTN3COZEg=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_4.1.0-next.1574050696.e516da17b04540be5dff476766f997cc59dcdbee_1574050697919_0.9344808146522978"},"_hasShrinkwrap":false,"publish_time":1574050698074,"_cnpm_publish_time":1574050698074,"_cnpmcore_publish_time":"2021-12-16T22:29:08.383Z"},"4.0.1":{"name":"getmac","version":"4.0.1","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["mac","mac-address","ifconfig","ipconfig","getmac"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"http://balupton.com"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"Isaac Huang","url":"http://caasih.net"},{"name":"zboszor","url":"https://github.com/zboszor"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"dependabot-preview[bot]","url":"http://github.com/apps/dependabot-preview"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=8"},"editions":[{"description":"typescript source code with import for modules","directory":"source","entry":"index.ts","tags":["typescript","import"],"engines":false},{"description":"typescript compiled for node.js 12 with require for modules","directory":"edition-node-12","entry":"index.js","tags":["javascript","require"],"engines":{"node":"8 || 10 || 12","browsers":false}}],"bin":{"getmac-node":"edition-node-12/bin.js"},"types":"source/index.ts","main":"edition-node-12/index.js","dependencies":{"@types/node":"^12.12.8"},"devDependencies":{"@babel/cli":"^7.7.0","@babel/core":"^7.7.2","@babel/plugin-proposal-class-properties":"^7.7.0","@babel/plugin-proposal-object-rest-spread":"^7.6.2","@babel/plugin-proposal-optional-chaining":"^7.6.0","@babel/preset-env":"^7.7.1","@babel/preset-typescript":"^7.7.2","@typescript-eslint/eslint-plugin":"^2.7.0","@typescript-eslint/parser":"^2.7.0","assert-helpers":"5.4.0","babel-plugin-add-module-exports":"^1.0.2","coffeelint":"^2.1.0","coffeescript":"^2.4.1","eslint":"^6.6.0","eslint-config-bevry":"^1.2.1","eslint-config-prettier":"^6.6.0","eslint-plugin-prettier":"^3.1.1","kava":"4.0.0","prettier":"^1.19.1","projectz":"^1.10.0","surge":"^0.21.3","typedoc":"^0.15.2","typescript":"^3.7.2","valid-directory":"^1.1.1"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:edition-node-12","our:compile:edition-node-12":"env BABEL_ENV=edition-node-12 babel --extensions \".ts,.tsx\" --out-dir ./edition-node-12 ./source","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:docs && npm run our:meta:projectz","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:coffeelint && npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier && npm run our:verify:typescript","our:verify:coffeelint":"coffeelint ./source","our:verify:directory":"npx valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write ./source/**","our:verify:typescript":"tsc --noEmit --project .","test":"node ./edition-node-12/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"babel":{"env":{"edition-node-12":{"sourceType":"module","presets":[["@babel/preset-env",{"targets":{"node":"12"},"modules":"commonjs"}],"@babel/preset-typescript"],"plugins":["@babel/proposal-object-rest-spread","@babel/plugin-proposal-optional-chaining","@babel/proposal-class-properties","add-module-exports"]}}},"gitHead":"f864e7ead58cb6ec7b59859826326b2e38efbc7f","_id":"getmac@4.0.1","_nodeVersion":"12.13.0","_npmVersion":"6.12.0","dist":{"shasum":"900c9b57d19d09766dc7bf73362a5d36aab7762f","size":7425,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-4.0.1.tgz","integrity":"sha512-vFrpkV41dIxTsjxIJFUgJBzrj9aZspXUI7SGtbpw9/SNmTLeEa6kdLjAziaafhgolSW7MDIo8aV3MxByHRSQJA=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_4.0.1_1574044311659_0.7314942126176982"},"_hasShrinkwrap":false,"publish_time":1574044311792,"_cnpm_publish_time":1574044311792,"_cnpmcore_publish_time":"2021-12-16T22:29:08.586Z"},"4.0.1-next.1574044248.f864e7ead58cb6ec7b59859826326b2e38efbc7f":{"name":"getmac","version":"4.0.1-next.1574044248.f864e7ead58cb6ec7b59859826326b2e38efbc7f","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["mac","mac-address","ifconfig","ipconfig","getmac"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"http://balupton.com"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"Isaac Huang","url":"http://caasih.net"},{"name":"zboszor","url":"https://github.com/zboszor"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"dependabot-preview[bot]","url":"http://github.com/apps/dependabot-preview"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=8"},"editions":[{"description":"typescript source code with import for modules","directory":"source","entry":"index.ts","tags":["typescript","import"],"engines":false},{"description":"typescript compiled for node.js 12 with require for modules","directory":"edition-node-12","entry":"index.js","tags":["javascript","require"],"engines":{"node":"8 || 10 || 12","browsers":false}}],"bin":{"getmac-node":"edition-node-12/bin.js"},"types":"source/index.ts","main":"edition-node-12/index.js","dependencies":{"@types/node":"^12.12.8"},"devDependencies":{"@babel/cli":"^7.7.0","@babel/core":"^7.7.2","@babel/plugin-proposal-class-properties":"^7.7.0","@babel/plugin-proposal-object-rest-spread":"^7.6.2","@babel/plugin-proposal-optional-chaining":"^7.6.0","@babel/preset-env":"^7.7.1","@babel/preset-typescript":"^7.7.2","@typescript-eslint/eslint-plugin":"^2.7.0","@typescript-eslint/parser":"^2.7.0","assert-helpers":"5.4.0","babel-plugin-add-module-exports":"^1.0.2","coffeelint":"^2.1.0","coffeescript":"^2.4.1","eslint":"^6.6.0","eslint-config-bevry":"^1.2.1","eslint-config-prettier":"^6.6.0","eslint-plugin-prettier":"^3.1.1","kava":"4.0.0","prettier":"^1.19.1","projectz":"^1.10.0","surge":"^0.21.3","typedoc":"^0.15.2","typescript":"^3.7.2","valid-directory":"^1.1.1"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:edition-node-12","our:compile:edition-node-12":"env BABEL_ENV=edition-node-12 babel --extensions \".ts,.tsx\" --out-dir ./edition-node-12 ./source","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:docs && npm run our:meta:projectz","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:coffeelint && npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier && npm run our:verify:typescript","our:verify:coffeelint":"coffeelint ./source","our:verify:directory":"npx valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write ./source/**","our:verify:typescript":"tsc --noEmit --project .","test":"node ./edition-node-12/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"babel":{"env":{"edition-node-12":{"sourceType":"module","presets":[["@babel/preset-env",{"targets":{"node":"12"},"modules":"commonjs"}],"@babel/preset-typescript"],"plugins":["@babel/proposal-object-rest-spread","@babel/plugin-proposal-optional-chaining","@babel/proposal-class-properties","add-module-exports"]}}},"gitHead":"f864e7ead58cb6ec7b59859826326b2e38efbc7f","readmeFilename":"README.md","_id":"getmac@4.0.1-next.1574044248.f864e7ead58cb6ec7b59859826326b2e38efbc7f","_nodeVersion":"12.13.0","_npmVersion":"6.12.0","dist":{"shasum":"558c1406105546b444b1533dc8401e56870ed7ba","size":7477,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-4.0.1-next.1574044248.f864e7ead58cb6ec7b59859826326b2e38efbc7f.tgz","integrity":"sha512-AxR58FjVWwtQtKJJzrAWdRzxNBnOFc6owIA5X9O1FPKu9YOcyGdSJmfSmmTGg8xf0Yf3aPohUnrxS4aOdF4enw=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_4.0.1-next.1574044248.f864e7ead58cb6ec7b59859826326b2e38efbc7f_1574044250385_0.7048067656486339"},"_hasShrinkwrap":false,"publish_time":1574044250496,"_cnpm_publish_time":1574044250496,"_cnpmcore_publish_time":"2021-12-16T22:29:08.791Z"},"4.0.0":{"name":"getmac","version":"4.0.0","description":"Get the mac address of the current machine you are on","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["mac","mac-address","ifconfig","ipconfig","getmac"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"http://balupton.com"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"Isaac Huang","url":"http://caasih.net"},{"name":"zboszor","url":"https://github.com/zboszor"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"dependabot-preview[bot]","url":"http://github.com/apps/dependabot-preview"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=8"},"editions":[{"description":"typescript source code with import for modules","directory":"source","entry":"index.ts","tags":["typescript","import"],"engines":false},{"description":"typescript compiled for node.js 12 with require for modules","directory":"edition-node-12","entry":"index.js","tags":["javascript","require"],"engines":{"node":"8 || 10 || 12","browsers":false}}],"bin":{"getmac-node":"edition-node-12/bin.js"},"types":"source/index.ts","main":"edition-node-12/index.js","dependencies":{"@types/node":"^12.12.8"},"devDependencies":{"@babel/cli":"^7.7.0","@babel/core":"^7.7.2","@babel/plugin-proposal-class-properties":"^7.7.0","@babel/plugin-proposal-object-rest-spread":"^7.6.2","@babel/plugin-proposal-optional-chaining":"^7.6.0","@babel/preset-env":"^7.7.1","@babel/preset-typescript":"^7.7.2","@typescript-eslint/eslint-plugin":"^2.7.0","@typescript-eslint/parser":"^2.7.0","assert-helpers":"5.4.0","babel-plugin-add-module-exports":"^1.0.2","coffeelint":"^2.1.0","coffeescript":"^2.4.1","eslint":"^6.6.0","eslint-config-bevry":"^1.2.1","eslint-config-prettier":"^6.6.0","eslint-plugin-prettier":"^3.1.1","kava":"4.0.0","prettier":"^1.19.1","projectz":"^1.10.0","surge":"^0.21.3","typedoc":"^0.15.2","typescript":"^3.7.2","valid-directory":"^1.1.1"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:edition-node-12","our:compile:edition-node-12":"env BABEL_ENV=edition-node-12 babel --extensions \".ts,.tsx\" --out-dir ./edition-node-12 ./source","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:docs && npm run our:meta:projectz","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:coffeelint && npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier && npm run our:verify:typescript","our:verify:coffeelint":"coffeelint ./source","our:verify:directory":"npx valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write ./source/**","our:verify:typescript":"tsc --noEmit --project .","test":"node ./edition-node-12/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"babel":{"env":{"edition-node-12":{"sourceType":"module","presets":[["@babel/preset-env",{"targets":{"node":"12"},"modules":"commonjs"}],"@babel/preset-typescript"],"plugins":["@babel/proposal-object-rest-spread","@babel/plugin-proposal-optional-chaining","@babel/proposal-class-properties","add-module-exports"]}}},"gitHead":"af281ec8c1a9cd2d75a133cb41c6b424ee2ac5ea","_id":"getmac@4.0.0","_nodeVersion":"12.13.0","_npmVersion":"6.12.0","dist":{"shasum":"0e69ce82d2b08a8f35ca7d18af1624eb7a77d1f8","size":7707,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-4.0.0.tgz","integrity":"sha512-kX0FQPH1wYNNZgCC/IueR/TPrEHLDPz6W2KAmaYzP4UtXtJBRWLgso1NJXVPaLyb5m2YP8pyFk53oSrM4UPzmg=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_4.0.0_1574043790461_0.8350438722583469"},"_hasShrinkwrap":false,"publish_time":1574043790665,"_cnpm_publish_time":1574043790665,"_cnpmcore_publish_time":"2021-12-16T22:29:09.014Z"},"4.0.0-next.1574043723.af281ec8c1a9cd2d75a133cb41c6b424ee2ac5ea":{"name":"getmac","version":"4.0.0-next.1574043723.af281ec8c1a9cd2d75a133cb41c6b424ee2ac5ea","description":"Get the mac address of the current machine you are on","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["mac","mac-address","ifconfig","ipconfig","getmac"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"http://balupton.com"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"Isaac Huang","url":"http://caasih.net"},{"name":"zboszor","url":"https://github.com/zboszor"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"dependabot-preview[bot]","url":"http://github.com/apps/dependabot-preview"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=8"},"editions":[{"description":"typescript source code with import for modules","directory":"source","entry":"index.ts","tags":["typescript","import"],"engines":false},{"description":"typescript compiled for node.js 12 with require for modules","directory":"edition-node-12","entry":"index.js","tags":["javascript","require"],"engines":{"node":"8 || 10 || 12","browsers":false}}],"bin":{"getmac-node":"edition-node-12/bin.js"},"types":"source/index.ts","main":"edition-node-12/index.js","dependencies":{"@types/node":"^12.12.8"},"devDependencies":{"@babel/cli":"^7.7.0","@babel/core":"^7.7.2","@babel/plugin-proposal-class-properties":"^7.7.0","@babel/plugin-proposal-object-rest-spread":"^7.6.2","@babel/plugin-proposal-optional-chaining":"^7.6.0","@babel/preset-env":"^7.7.1","@babel/preset-typescript":"^7.7.2","@typescript-eslint/eslint-plugin":"^2.7.0","@typescript-eslint/parser":"^2.7.0","assert-helpers":"5.4.0","babel-plugin-add-module-exports":"^1.0.2","coffeelint":"^2.1.0","coffeescript":"^2.4.1","eslint":"^6.6.0","eslint-config-bevry":"^1.2.1","eslint-config-prettier":"^6.6.0","eslint-plugin-prettier":"^3.1.1","kava":"4.0.0","prettier":"^1.19.1","projectz":"^1.10.0","surge":"^0.21.3","typedoc":"^0.15.2","typescript":"^3.7.2","valid-directory":"^1.1.1"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:edition-node-12","our:compile:edition-node-12":"env BABEL_ENV=edition-node-12 babel --extensions \".ts,.tsx\" --out-dir ./edition-node-12 ./source","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:docs && npm run our:meta:projectz","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:coffeelint && npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier && npm run our:verify:typescript","our:verify:coffeelint":"coffeelint ./source","our:verify:directory":"npx valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write ./source/**","our:verify:typescript":"tsc --noEmit --project .","test":"node ./edition-node-12/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"babel":{"env":{"edition-node-12":{"sourceType":"module","presets":[["@babel/preset-env",{"targets":{"node":"12"},"modules":"commonjs"}],"@babel/preset-typescript"],"plugins":["@babel/proposal-object-rest-spread","@babel/plugin-proposal-optional-chaining","@babel/proposal-class-properties","add-module-exports"]}}},"gitHead":"af281ec8c1a9cd2d75a133cb41c6b424ee2ac5ea","readmeFilename":"README.md","_id":"getmac@4.0.0-next.1574043723.af281ec8c1a9cd2d75a133cb41c6b424ee2ac5ea","_nodeVersion":"12.13.0","_npmVersion":"6.12.0","dist":{"shasum":"8f9338acdd0fd1105cbcbd98452a31c2faef9982","size":7751,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-4.0.0-next.1574043723.af281ec8c1a9cd2d75a133cb41c6b424ee2ac5ea.tgz","integrity":"sha512-bnoFSiKQz0EdOvLOrvDbrn9eDudDZ/VwboVEKSiBX6WkWIqoBxvSJLCABIQFfMb+1nrNT8To6PPZvKB2f0jFCA=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_4.0.0-next.1574043723.af281ec8c1a9cd2d75a133cb41c6b424ee2ac5ea_1574043724702_0.02357184637465859"},"_hasShrinkwrap":false,"publish_time":1574043724810,"_cnpm_publish_time":1574043724810,"_cnpmcore_publish_time":"2021-12-16T22:29:09.298Z"},"3.0.1":{"name":"getmac","version":"3.0.1","description":"Get the mac address of the current machine you are on","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["mac","mac-address","ifconfig","ipconfig","getmac"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"http://balupton.com"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"Isaac Huang","url":"http://caasih.net"},{"name":"zboszor","url":"https://github.com/zboszor"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"dependabot-preview[bot]","url":"http://github.com/apps/dependabot-preview"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=8"},"editions":[{"description":"typescript source code with import for modules","directory":"source","entry":"index.ts","tags":["typescript","import"],"engines":false},{"description":"typescript compiled for node.js 12 with require for modules","directory":"edition-node-12","entry":"index.js","tags":["javascript","require"],"engines":{"node":"8 || 10 || 12","browsers":false}}],"bin":{"getmac-node":"edition-node-12/bin.js"},"types":"source/index.ts","main":"edition-node-12/index.js","dependencies":{"@types/node":"^12.12.8"},"devDependencies":{"@babel/cli":"^7.7.0","@babel/core":"^7.7.2","@babel/plugin-proposal-class-properties":"^7.7.0","@babel/plugin-proposal-object-rest-spread":"^7.6.2","@babel/plugin-proposal-optional-chaining":"^7.6.0","@babel/preset-env":"^7.7.1","@babel/preset-typescript":"^7.7.2","@typescript-eslint/eslint-plugin":"^2.7.0","@typescript-eslint/parser":"^2.7.0","assert-helpers":"5.4.0","babel-plugin-add-module-exports":"^1.0.2","coffeelint":"^2.1.0","coffeescript":"^2.4.1","eslint":"^6.6.0","eslint-config-bevry":"^1.2.1","eslint-config-prettier":"^6.6.0","eslint-plugin-prettier":"^3.1.1","kava":"4.0.0","prettier":"^1.19.1","projectz":"^1.10.0","surge":"^0.21.3","typedoc":"^0.15.2","typescript":"^3.7.2","valid-directory":"^1.1.1"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:edition-node-12","our:compile:edition-node-12":"env BABEL_ENV=edition-node-12 babel --extensions \".ts,.tsx\" --out-dir ./edition-node-12 ./source","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:docs && npm run our:meta:projectz","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:coffeelint && npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier && npm run our:verify:typescript","our:verify:coffeelint":"coffeelint ./source","our:verify:directory":"npx valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write ./source/**","our:verify:typescript":"tsc --noEmit --project .","test":"node ./edition-node-12/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"babel":{"env":{"edition-node-12":{"sourceType":"module","presets":[["@babel/preset-env",{"targets":{"node":"12"},"modules":"commonjs"}],"@babel/preset-typescript"],"plugins":["@babel/proposal-object-rest-spread","@babel/plugin-proposal-optional-chaining","@babel/proposal-class-properties","add-module-exports"]}}},"gitHead":"ef271fdf256062251a792f9f4d7fcc49e40d26f5","_id":"getmac@3.0.1","_nodeVersion":"12.13.0","_npmVersion":"6.12.0","dist":{"shasum":"17486beb79989d101efdf1c2a7df24da773da16c","size":9377,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-3.0.1.tgz","integrity":"sha512-shoUvD4Ga1I07XWUGsmFayVL3eBNbvCEfLSwXsEBQHOcD0Zb/jzY5GEkzZH9HLQO7AmrXKn92q9Gv+SnoHI9Ng=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_3.0.1_1574041769963_0.6670537516649362"},"_hasShrinkwrap":false,"publish_time":1574041770143,"_cnpm_publish_time":1574041770143,"_cnpmcore_publish_time":"2021-12-16T22:29:09.489Z"},"3.0.1-next.1574041696.ef271fdf256062251a792f9f4d7fcc49e40d26f5":{"name":"getmac","version":"3.0.1-next.1574041696.ef271fdf256062251a792f9f4d7fcc49e40d26f5","description":"Get the mac address of the current machine you are on","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["mac","mac-address","ifconfig","ipconfig","getmac"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"http://balupton.com"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"Isaac Huang","url":"http://caasih.net"},{"name":"zboszor","url":"https://github.com/zboszor"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"dependabot-preview[bot]","url":"http://github.com/apps/dependabot-preview"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=8"},"editions":[{"description":"typescript source code with import for modules","directory":"source","entry":"index.ts","tags":["typescript","import"],"engines":false},{"description":"typescript compiled for node.js 12 with require for modules","directory":"edition-node-12","entry":"index.js","tags":["javascript","require"],"engines":{"node":"8 || 10 || 12","browsers":false}}],"bin":{"getmac-node":"edition-node-12/bin.js"},"types":"source/index.ts","main":"edition-node-12/index.js","dependencies":{"@types/node":"^12.12.8"},"devDependencies":{"@babel/cli":"^7.7.0","@babel/core":"^7.7.2","@babel/plugin-proposal-class-properties":"^7.7.0","@babel/plugin-proposal-object-rest-spread":"^7.6.2","@babel/plugin-proposal-optional-chaining":"^7.6.0","@babel/preset-env":"^7.7.1","@babel/preset-typescript":"^7.7.2","@typescript-eslint/eslint-plugin":"^2.7.0","@typescript-eslint/parser":"^2.7.0","assert-helpers":"5.4.0","babel-plugin-add-module-exports":"^1.0.2","coffeelint":"^2.1.0","coffeescript":"^2.4.1","eslint":"^6.6.0","eslint-config-bevry":"^1.2.1","eslint-config-prettier":"^6.6.0","eslint-plugin-prettier":"^3.1.1","kava":"4.0.0","prettier":"^1.19.1","projectz":"^1.10.0","surge":"^0.21.3","typedoc":"^0.15.2","typescript":"^3.7.2","valid-directory":"^1.1.1"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:edition-node-12","our:compile:edition-node-12":"env BABEL_ENV=edition-node-12 babel --extensions \".ts,.tsx\" --out-dir ./edition-node-12 ./source","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:docs && npm run our:meta:projectz","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:coffeelint && npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier && npm run our:verify:typescript","our:verify:coffeelint":"coffeelint ./source","our:verify:directory":"npx valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write ./source/**","our:verify:typescript":"tsc --noEmit --project .","test":"node ./edition-node-12/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"babel":{"env":{"edition-node-12":{"sourceType":"module","presets":[["@babel/preset-env",{"targets":{"node":"12"},"modules":"commonjs"}],"@babel/preset-typescript"],"plugins":["@babel/proposal-object-rest-spread","@babel/plugin-proposal-optional-chaining","@babel/proposal-class-properties","add-module-exports"]}}},"gitHead":"ef271fdf256062251a792f9f4d7fcc49e40d26f5","readmeFilename":"README.md","_id":"getmac@3.0.1-next.1574041696.ef271fdf256062251a792f9f4d7fcc49e40d26f5","_nodeVersion":"12.13.0","_npmVersion":"6.12.0","dist":{"shasum":"7377786efe640c6b113ad359c7b94ac203f4f5ae","size":9425,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-3.0.1-next.1574041696.ef271fdf256062251a792f9f4d7fcc49e40d26f5.tgz","integrity":"sha512-QYSpAqA/MBeSUj59CH+1ebNOEzJlR4l/D3ZwFSTXnHhynDdMOEja/cYmJiEhE/T5zRzc3/yy/hGtSFENWSbKvg=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_3.0.1-next.1574041696.ef271fdf256062251a792f9f4d7fcc49e40d26f5_1574041698629_0.8019636217624655"},"_hasShrinkwrap":false,"publish_time":1574041698747,"_cnpm_publish_time":1574041698747,"_cnpmcore_publish_time":"2021-12-16T22:29:09.677Z"},"3.0.0":{"name":"getmac","version":"3.0.0","description":"Get the mac address of the current machine you are on","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["mac","mac-address","ifconfig","ipconfig","getmac"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"http://balupton.com"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"Isaac Huang","url":"http://caasih.net"},{"name":"zboszor","url":"https://github.com/zboszor"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"dependabot-preview[bot]","url":"http://github.com/apps/dependabot-preview"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=8"},"editions":[{"description":"typescript source code with import for modules","directory":"source","entry":"index.ts","tags":["typescript","import"],"engines":false},{"description":"typescript compiled for node.js 12 with require for modules","directory":"edition-node-12","entry":"index.js","tags":["javascript","require"],"engines":{"node":"8 || 10 || 12","browsers":false}}],"bin":{"getmac-node":"edition-node-12/bin.js"},"types":"source/index.ts","main":"edition-node-12/index.js","dependencies":{"@types/node":"^12.12.8"},"devDependencies":{"@babel/cli":"^7.7.0","@babel/core":"^7.7.2","@babel/plugin-proposal-class-properties":"^7.7.0","@babel/plugin-proposal-object-rest-spread":"^7.6.2","@babel/plugin-proposal-optional-chaining":"^7.6.0","@babel/preset-env":"^7.7.1","@babel/preset-typescript":"^7.7.2","@typescript-eslint/eslint-plugin":"^2.7.0","@typescript-eslint/parser":"^2.7.0","assert-helpers":"5.4.0","babel-plugin-add-module-exports":"^1.0.2","coffeelint":"^2.1.0","coffeescript":"^2.4.1","eslint":"^6.6.0","eslint-config-bevry":"^1.2.1","eslint-config-prettier":"^6.6.0","eslint-plugin-prettier":"^3.1.1","kava":"4.0.0","prettier":"^1.19.1","projectz":"^1.10.0","surge":"^0.21.3","typedoc":"^0.15.2","typescript":"^3.7.2","valid-directory":"^1.1.1"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:edition-node-12","our:compile:edition-node-12":"env BABEL_ENV=edition-node-12 babel --extensions \".ts,.tsx\" --out-dir ./edition-node-12 ./source","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:docs && npm run our:meta:projectz","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:coffeelint && npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier && npm run our:verify:typescript","our:verify:coffeelint":"coffeelint ./source","our:verify:directory":"npx valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write ./source/**","our:verify:typescript":"tsc --noEmit --project .","test":"node ./edition-node-12/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"babel":{"env":{"edition-node-12":{"sourceType":"module","presets":[["@babel/preset-env",{"targets":{"node":"12"},"modules":"commonjs"}],"@babel/preset-typescript"],"plugins":["@babel/proposal-object-rest-spread","@babel/plugin-proposal-optional-chaining","@babel/proposal-class-properties","add-module-exports"]}}},"gitHead":"013b481b7751b71f64e4b68a64e9d9854ed0c593","_id":"getmac@3.0.0","_nodeVersion":"12.13.0","_npmVersion":"6.12.0","dist":{"shasum":"6405d7c0d5085eda2177d132aa74b0c1ee01ccfd","size":9339,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-3.0.0.tgz","integrity":"sha512-CNVxCCU6FmKaM80QwxS6VHjliYrkHFEz+g7SSHmWDI/uUUjv0+PBCl0u0LJuBVs/c+Fkv4eetYGIyFaM5aKQ4Q=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_3.0.0_1574041587732_0.22213524008294216"},"_hasShrinkwrap":false,"publish_time":1574041587896,"_cnpm_publish_time":1574041587896,"_cnpmcore_publish_time":"2021-12-16T22:29:09.927Z"},"3.0.0-next.1574041521.013b481b7751b71f64e4b68a64e9d9854ed0c593":{"name":"getmac","version":"3.0.0-next.1574041521.013b481b7751b71f64e4b68a64e9d9854ed0c593","description":"Get the mac address of the current machine you are on","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["mac","mac-address","ifconfig","ipconfig","getmac"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"http://balupton.com"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"Isaac Huang","url":"http://caasih.net"},{"name":"zboszor","url":"https://github.com/zboszor"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"dependabot-preview[bot]","url":"http://github.com/apps/dependabot-preview"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=8"},"editions":[{"description":"typescript source code with import for modules","directory":"source","entry":"index.ts","tags":["typescript","import"],"engines":false},{"description":"typescript compiled for node.js 12 with require for modules","directory":"edition-node-12","entry":"index.js","tags":["javascript","require"],"engines":{"node":"8 || 10 || 12","browsers":false}}],"bin":{"getmac-node":"edition-node-12/bin.js"},"types":"source/index.ts","main":"edition-node-12/index.js","dependencies":{"@types/node":"^12.12.8"},"devDependencies":{"@babel/cli":"^7.7.0","@babel/core":"^7.7.2","@babel/plugin-proposal-class-properties":"^7.7.0","@babel/plugin-proposal-object-rest-spread":"^7.6.2","@babel/plugin-proposal-optional-chaining":"^7.6.0","@babel/preset-env":"^7.7.1","@babel/preset-typescript":"^7.7.2","@typescript-eslint/eslint-plugin":"^2.7.0","@typescript-eslint/parser":"^2.7.0","assert-helpers":"5.4.0","babel-plugin-add-module-exports":"^1.0.2","coffeelint":"^2.1.0","coffeescript":"^2.4.1","eslint":"^6.6.0","eslint-config-bevry":"^1.2.1","eslint-config-prettier":"^6.6.0","eslint-plugin-prettier":"^3.1.1","kava":"4.0.0","prettier":"^1.19.1","projectz":"^1.10.0","surge":"^0.21.3","typedoc":"^0.15.2","typescript":"^3.7.2","valid-directory":"^1.1.1"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:edition-node-12","our:compile:edition-node-12":"env BABEL_ENV=edition-node-12 babel --extensions \".ts,.tsx\" --out-dir ./edition-node-12 ./source","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:docs && npm run our:meta:projectz","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:coffeelint && npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier && npm run our:verify:typescript","our:verify:coffeelint":"coffeelint ./source","our:verify:directory":"npx valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write ./source/**","our:verify:typescript":"tsc --noEmit --project .","test":"node ./edition-node-12/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"babel":{"env":{"edition-node-12":{"sourceType":"module","presets":[["@babel/preset-env",{"targets":{"node":"12"},"modules":"commonjs"}],"@babel/preset-typescript"],"plugins":["@babel/proposal-object-rest-spread","@babel/plugin-proposal-optional-chaining","@babel/proposal-class-properties","add-module-exports"]}}},"gitHead":"013b481b7751b71f64e4b68a64e9d9854ed0c593","readmeFilename":"README.md","_id":"getmac@3.0.0-next.1574041521.013b481b7751b71f64e4b68a64e9d9854ed0c593","_nodeVersion":"12.13.0","_npmVersion":"6.12.0","dist":{"shasum":"ac6a03e70939a2332b9807e105a487cf9bfe58cf","size":9382,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-3.0.0-next.1574041521.013b481b7751b71f64e4b68a64e9d9854ed0c593.tgz","integrity":"sha512-sxRurASD4d7cA5HmaKzBxymLiLYWGmixLW3GrQd2m+CbB0snCoWn3YILI/6ikyKkOxPspY7nFpaBxutV1T8Npw=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_3.0.0-next.1574041521.013b481b7751b71f64e4b68a64e9d9854ed0c593_1574041523007_0.6032054157564899"},"_hasShrinkwrap":false,"publish_time":1574041523108,"_cnpm_publish_time":1574041523108,"_cnpmcore_publish_time":"2021-12-16T22:29:10.247Z"},"2.0.0":{"name":"getmac","version":"2.0.0","description":"Get the mac address of the current machine you are on","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["mac","mac-address","ifconfig","ipconfig","getmac"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"http://balupton.com"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"Isaac Huang","url":"http://caasih.net"},{"name":"zboszor","url":"https://github.com/zboszor"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"dependabot-preview[bot]","url":"http://github.com/apps/dependabot-preview"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=8"},"editions":[{"description":"coffeescript source code with require for modules","directory":"source","entry":"index.coffee","tags":["coffeescript","require"],"engines":false},{"description":"coffeescript compiled for node.js with require for modules","directory":"edition-esnext","entry":"index.js","tags":["javascript","esnext","require"],"engines":{"node":"8 || 10 || 12","browsers":false}}],"bin":{"getmac-node":"bin.js"},"main":"edition-esnext/index.js","dependencies":{"extract-opts":"^3.4.0"},"devDependencies":{"assert-helpers":"^5.3.0","coffeelint":"^2.1.0","coffeescript":"^2.4.1","kava":"^4.0.0","projectz":"^1.10.0","valid-directory":"^1.1.1"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:edition-esnext","our:compile:edition-esnext":"coffee -bco ./edition-esnext ./source","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:projectz","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:coffeelint && npm run our:verify:directory","our:verify:coffeelint":"coffeelint ./source","our:verify:directory":"npx valid-directory","test":"node ./edition-esnext/test.js"},"gitHead":"8c4c8755aa254678149a7bff937d618eac2cd5f5","_id":"getmac@2.0.0","_nodeVersion":"12.13.0","_npmVersion":"6.12.0","dist":{"shasum":"12ec99e16c237844a14ff4d7261d39c7ed4e9111","size":7463,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-2.0.0.tgz","integrity":"sha512-/T/NdAC2obqcN+uchRjCrSQLbgELRDhakIJXt2h6Oqr/hwh8/S/er6PmztyE7Lk+Ki4sZVto5+uTV9Fm4zIAcA=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_2.0.0_1574020345579_0.8762632400753592"},"_hasShrinkwrap":false,"publish_time":1574020345693,"_cnpm_publish_time":1574020345693,"_cnpmcore_publish_time":"2021-12-16T22:29:10.527Z"},"2.0.0-next.1574020282.8c4c8755aa254678149a7bff937d618eac2cd5f5":{"name":"getmac","version":"2.0.0-next.1574020282.8c4c8755aa254678149a7bff937d618eac2cd5f5","description":"Get the mac address of the current machine you are on","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["mac","mac-address","ifconfig","ipconfig","getmac"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"http://balupton.com"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"Isaac Huang","url":"http://caasih.net"},{"name":"zboszor","url":"https://github.com/zboszor"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"dependabot-preview[bot]","url":"http://github.com/apps/dependabot-preview"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=8"},"editions":[{"description":"coffeescript source code with require for modules","directory":"source","entry":"index.coffee","tags":["coffeescript","require"],"engines":false},{"description":"coffeescript compiled for node.js with require for modules","directory":"edition-esnext","entry":"index.js","tags":["javascript","esnext","require"],"engines":{"node":"8 || 10 || 12","browsers":false}}],"bin":{"getmac-node":"bin.js"},"main":"edition-esnext/index.js","dependencies":{"extract-opts":"^3.4.0"},"devDependencies":{"assert-helpers":"^5.3.0","coffeelint":"^2.1.0","coffeescript":"^2.4.1","kava":"^4.0.0","projectz":"^1.10.0","valid-directory":"^1.1.1"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:edition-esnext","our:compile:edition-esnext":"coffee -bco ./edition-esnext ./source","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:projectz","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:coffeelint && npm run our:verify:directory","our:verify:coffeelint":"coffeelint ./source","our:verify:directory":"npx valid-directory","test":"node ./edition-esnext/test.js"},"gitHead":"8c4c8755aa254678149a7bff937d618eac2cd5f5","readmeFilename":"README.md","_id":"getmac@2.0.0-next.1574020282.8c4c8755aa254678149a7bff937d618eac2cd5f5","_nodeVersion":"12.13.0","_npmVersion":"6.12.0","dist":{"shasum":"89118d961e54fab9ed67f91f5c879ef4462ffaac","size":7516,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-2.0.0-next.1574020282.8c4c8755aa254678149a7bff937d618eac2cd5f5.tgz","integrity":"sha512-TD8ayRRZwp9ghpxUEbFEbNh7PWuykatHKWTbHBrjYuKja2BYFOW9OYKITpXwzsZF33F4/VJnuqlVu8AxND95nA=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_2.0.0-next.1574020282.8c4c8755aa254678149a7bff937d618eac2cd5f5_1574020283420_0.609351454456301"},"_hasShrinkwrap":false,"publish_time":1574020283561,"_cnpm_publish_time":1574020283561,"_cnpmcore_publish_time":"2021-12-16T22:29:10.713Z"},"1.5.0-next.1573738565.5dd46ec0dd1892bb54ff2b722a3a413597f2787d":{"name":"getmac","version":"1.5.0-next.1573738565.5dd46ec0dd1892bb54ff2b722a3a413597f2787d","description":"Get the mac address of the current machine you are on","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["mac","mac-address","ifconfig","ipconfig","getmac"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com"}},"funding":{"type":"cooperative","url":"https://bevry.me/fund"},"author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"http://balupton.com"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"Isaac Huang","url":"http://caasih.net"},{"name":"zboszor","url":"https://github.com/zboszor"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=0.10"},"editions":[{"description":"coffeescript source code with require for modules","directory":"source","entry":"index.coffee","tags":["coffeescript","require"],"engines":false},{"description":"coffeescript compiled for node.js with require for modules","directory":"edition-esnext","entry":"index.js","tags":["javascript","esnext","require"],"engines":{"node":"6 || 8 || 10 || 12 || 13","browsers":false}},{"description":"coffeescript compiled for node.js 0.10 with require for modules","directory":"edition-node-0.10","entry":"index.js","tags":["javascript","require"],"engines":{"node":"0.10 || 0.12 || 4 || 6 || 8 || 10 || 12 || 13","browsers":false}}],"bin":{"getmac-node":"bin.js"},"main":"index.js","dependencies":{"editions":"^2.2.0","extract-opts":"^3.3.1"},"devDependencies":{"@babel/cli":"^7.7.0","@babel/core":"^7.7.2","@babel/plugin-proposal-object-rest-spread":"^7.6.2","@babel/preset-env":"^7.7.1","assert-helpers":"4.10.0","coffeelint":"^2.1.0","coffeescript":"^2.4.1","kava":"^3.2.0","projectz":"^1.9.0","valid-directory":"^1.0.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:edition-esnext && npm run our:compile:edition-node-0.10","our:compile:edition-esnext":"coffee -bco ./edition-esnext ./source","our:compile:edition-node-0.10":"env BABEL_ENV=edition-node-0.10 coffee -bcto ./edition-node-0.10/ ./source","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:projectz","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:coffeelint && npm run our:verify:directory","our:verify:coffeelint":"coffeelint ./source","our:verify:directory":"npx valid-directory","test":"node ./test.js"},"babel":{"env":{"edition-node-0.10":{"sourceType":"script","presets":[["@babel/preset-env",{"targets":{"node":"0.10"},"modules":"commonjs"}]],"plugins":["@babel/proposal-object-rest-spread"]}}},"gitHead":"5dd46ec0dd1892bb54ff2b722a3a413597f2787d","readmeFilename":"README.md","_id":"getmac@1.5.0-next.1573738565.5dd46ec0dd1892bb54ff2b722a3a413597f2787d","_nodeVersion":"12.13.0","_npmVersion":"6.12.0","dist":{"shasum":"b50f61408a7aa53759a44feadc6e393a2355386e","size":8384,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-1.5.0-next.1573738565.5dd46ec0dd1892bb54ff2b722a3a413597f2787d.tgz","integrity":"sha512-s14XV2Ss1JaJw39OG3gMYFhXgSRu7/BoZO86uI3sohj7B0BPHAW47YCE1Bs6wvXEDqTbxRuWUukC8Aeer12bkg=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_1.5.0-next.1573738565.5dd46ec0dd1892bb54ff2b722a3a413597f2787d_1573738566981_0.3444033920440386"},"_hasShrinkwrap":false,"publish_time":1573738567134,"_cnpm_publish_time":1573738567134,"_cnpmcore_publish_time":"2021-12-16T22:29:10.938Z"},"1.5.0-next.1573686306.dc1197af99c8afe969ed073f3a1f5c9a88ac4fe4":{"name":"getmac","version":"1.5.0-next.1573686306.dc1197af99c8afe969ed073f3a1f5c9a88ac4fe4","description":"Get the mac address of the current machine you are on","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["mac","mac-address","ifconfig","ipconfig","getmac"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com"}},"funding":{"type":"cooperative","url":"https://bevry.me/fund"},"author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"http://balupton.com"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"Isaac Huang","url":"http://caasih.net"},{"name":"zboszor","url":"https://github.com/zboszor"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=0.10"},"editions":[{"description":"coffeescript source code with require for modules","directory":"source","entry":"index.coffee","tags":["coffeescript","require"],"engines":false},{"description":"coffeescript compiled for node.js with require for modules","directory":"edition-esnext","entry":"index.js","tags":["javascript","esnext","require"],"engines":{"node":"6 || 8 || 10 || 12 || 13","browsers":false}},{"description":"coffeescript compiled for node.js 0.10 with require for modules","directory":"edition-node-0.10","entry":"index.js","tags":["javascript","require"],"engines":{"node":"0.10 || 0.12 || 4 || 6 || 8 || 10 || 12 || 13","browsers":false}}],"bin":{"getmac-node":"bin.js"},"main":"index.js","dependencies":{"editions":"^2.2.0","extract-opts":"^3.3.1"},"devDependencies":{"@babel/cli":"^7.7.0","@babel/core":"^7.7.2","@babel/plugin-proposal-object-rest-spread":"^7.6.2","@babel/preset-env":"^7.7.1","assert-helpers":"4.10.0","coffeelint":"^2.1.0","coffeescript":"^2.4.1","kava":"^3.2.0","projectz":"^1.9.0","valid-directory":"^1.0.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:edition-esnext && npm run our:compile:edition-node-0.10","our:compile:edition-esnext":"coffee -bco ./edition-esnext ./source","our:compile:edition-node-0.10":"env BABEL_ENV=edition-node-0.10 coffee -bcto ./edition-node-0.10/ ./source","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:projectz","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:coffeelint && npm run our:verify:directory","our:verify:coffeelint":"coffeelint ./source","our:verify:directory":"npx valid-directory","test":"node ./test.js"},"babel":{"env":{"edition-node-0.10":{"sourceType":"script","presets":[["@babel/preset-env",{"targets":{"node":"0.10"},"modules":"commonjs"}]],"plugins":["@babel/proposal-object-rest-spread"]}}},"gitHead":"dc1197af99c8afe969ed073f3a1f5c9a88ac4fe4","readmeFilename":"README.md","_id":"getmac@1.5.0-next.1573686306.dc1197af99c8afe969ed073f3a1f5c9a88ac4fe4","_nodeVersion":"12.13.0","_npmVersion":"6.12.0","dist":{"shasum":"a016a0dce9ee8a9462d3d00a619d28d3bee122ad","size":8384,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-1.5.0-next.1573686306.dc1197af99c8afe969ed073f3a1f5c9a88ac4fe4.tgz","integrity":"sha512-i34qn+uGMd4qlPm7ihR7uHmCq9mGykS4+NqLI6jJ1ozPQsP+HhrPw6ohb2GDIGplhWtyN6H7RtJK0BIJG79nLg=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_1.5.0-next.1573686306.dc1197af99c8afe969ed073f3a1f5c9a88ac4fe4_1573686307987_0.8800583943755382"},"_hasShrinkwrap":false,"publish_time":1573686308131,"_cnpm_publish_time":1573686308131,"_cnpmcore_publish_time":"2021-12-16T22:29:11.136Z"},"1.5.0-next.1573610748.ec0e758cd5759a8da9589ab1df0dcded9ea53822":{"name":"getmac","version":"1.5.0-next.1573610748.ec0e758cd5759a8da9589ab1df0dcded9ea53822","description":"Get the mac address of the current machine you are on","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["mac","mac-address","ifconfig","ipconfig","getmac"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com"}},"funding":{"type":"cooperative","url":"https://bevry.me/fund"},"author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"http://balupton.com"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"Isaac Huang","url":"http://caasih.net"},{"name":"zboszor","url":"https://github.com/zboszor"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=0.10"},"editions":[{"description":"coffeescript source code with require for modules","directory":"source","entry":"index.coffee","tags":["coffeescript","require"],"engines":false},{"description":"coffeescript compiled for node.js with require for modules","directory":"edition-esnext","entry":"index.js","tags":["javascript","esnext","require"],"engines":{"node":"6 || 8 || 10 || 12 || 13","browsers":false}},{"description":"coffeescript compiled for node.js 0.10 with require for modules","directory":"edition-node-0.10","entry":"index.js","tags":["javascript","require"],"engines":{"node":"0.10 || 0.12 || 4 || 6 || 8 || 10 || 12 || 13","browsers":false}}],"bin":{"getmac-node":"bin.js"},"main":"index.js","dependencies":{"editions":"^2.2.0","extract-opts":"^3.3.1"},"devDependencies":{"@babel/cli":"^7.7.0","@babel/core":"^7.7.2","@babel/plugin-proposal-object-rest-spread":"^7.6.2","@babel/preset-env":"^7.7.1","assert-helpers":"4.10.0","coffeelint":"^2.1.0","coffeescript":"^2.4.1","kava":"^3.2.0","projectz":"^1.9.0","valid-directory":"^1.0.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:edition-esnext && npm run our:compile:edition-node-0.10","our:compile:edition-esnext":"coffee -bco ./edition-esnext ./source","our:compile:edition-node-0.10":"env BABEL_ENV=edition-node-0.10 coffee -bcto ./edition-node-0.10/ ./source","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:projectz","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:coffeelint && npm run our:verify:directory","our:verify:coffeelint":"coffeelint ./source","our:verify:directory":"npx valid-directory","test":"node ./test.js"},"babel":{"env":{"edition-node-0.10":{"sourceType":"script","presets":[["@babel/preset-env",{"targets":{"node":"0.10"},"modules":"commonjs"}]],"plugins":["@babel/proposal-object-rest-spread"]}}},"gitHead":"ec0e758cd5759a8da9589ab1df0dcded9ea53822","readmeFilename":"README.md","_id":"getmac@1.5.0-next.1573610748.ec0e758cd5759a8da9589ab1df0dcded9ea53822","_nodeVersion":"12.13.0","_npmVersion":"6.12.0","dist":{"shasum":"3f5b961c0957880573cffd4ae9135fcb31209148","size":8383,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-1.5.0-next.1573610748.ec0e758cd5759a8da9589ab1df0dcded9ea53822.tgz","integrity":"sha512-mNvZ1RIt/cZ8fEuL35gIE+h1T3XAn8EDnZoBZkAlSe6iREZFlIJ0Z5z/JOTJvOx2rXnoQumDFIwPuSG8+0OL0A=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_1.5.0-next.1573610748.ec0e758cd5759a8da9589ab1df0dcded9ea53822_1573610750593_0.76006211685745"},"_hasShrinkwrap":false,"publish_time":1573610750809,"_cnpm_publish_time":1573610750809,"_cnpmcore_publish_time":"2021-12-16T22:29:11.375Z"},"1.5.0-next.1573602563.767cb9d51b9dedbd9d9afd955a9b14b9d496c44c":{"name":"getmac","version":"1.5.0-next.1573602563.767cb9d51b9dedbd9d9afd955a9b14b9d496c44c","description":"Get the mac address of the current machine you are on","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["mac","mac-address","ifconfig","ipconfig","getmac"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com"}},"funding":{"type":"cooperative","url":"https://bevry.me/fund"},"author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"http://balupton.com"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"Isaac Huang","url":"http://caasih.net"},{"name":"zboszor","url":"https://github.com/zboszor"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=0.10"},"editions":[{"description":"coffeescript source code with require for modules","directory":"source","entry":"index.coffee","tags":["coffeescript","require"],"engines":false},{"description":"coffeescript compiled for node.js with require for modules","directory":"edition-esnext","entry":"index.js","tags":["javascript","esnext","require"],"engines":{"node":"6 || 8 || 10 || 12 || 13","browsers":false}},{"description":"coffeescript compiled for node.js 0.10 with require for modules","directory":"edition-node-0.10","entry":"index.js","tags":["javascript","require"],"engines":{"node":"0.10 || 0.12 || 4 || 6 || 8 || 10 || 12 || 13","browsers":false}}],"bin":{"getmac-node":"bin.js"},"main":"index.js","dependencies":{"editions":"^2.2.0","extract-opts":"^3.3.1"},"devDependencies":{"@babel/cli":"^7.7.0","@babel/core":"^7.7.2","@babel/plugin-proposal-object-rest-spread":"^7.6.2","@babel/preset-env":"^7.7.1","assert-helpers":"4.10.0","coffeelint":"^2.1.0","coffeescript":"^2.4.1","kava":"^3.2.0","projectz":"^1.9.0","valid-directory":"^1.0.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:edition-esnext && npm run our:compile:edition-node-0.10","our:compile:edition-esnext":"coffee -bco ./edition-esnext ./source","our:compile:edition-node-0.10":"env BABEL_ENV=edition-node-0.10 coffee -bcto ./edition-node-0.10/ ./source","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:projectz","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:coffeelint && npm run our:verify:directory","our:verify:coffeelint":"coffeelint ./source","our:verify:directory":"npx valid-directory","test":"node ./test.js"},"babel":{"env":{"edition-node-0.10":{"sourceType":"script","presets":[["@babel/preset-env",{"targets":{"node":"0.10"},"modules":"commonjs"}]],"plugins":["@babel/proposal-object-rest-spread"]}}},"gitHead":"767cb9d51b9dedbd9d9afd955a9b14b9d496c44c","readmeFilename":"README.md","_id":"getmac@1.5.0-next.1573602563.767cb9d51b9dedbd9d9afd955a9b14b9d496c44c","_nodeVersion":"12.13.0","_npmVersion":"6.12.0","dist":{"shasum":"ffd54093ab1b2ac7c2b1812c419529bc887f629d","size":8381,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-1.5.0-next.1573602563.767cb9d51b9dedbd9d9afd955a9b14b9d496c44c.tgz","integrity":"sha512-U7v2vAuXPcpBMKlHyPB1SDjMT8Qc6iZW6FSmhQUHfxJpujPw4+JCQd92dYgvb2FbagR0p8ZKtgWhkAwSRuqnfw=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_1.5.0-next.1573602563.767cb9d51b9dedbd9d9afd955a9b14b9d496c44c_1573602567716_0.4078529197040468"},"_hasShrinkwrap":false,"publish_time":1573602567909,"_cnpm_publish_time":1573602567909,"_cnpmcore_publish_time":"2021-12-16T22:29:11.640Z"},"1.5.0":{"name":"getmac","version":"1.5.0","description":"Get the mac address of the current machine you are on","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["mac","mac-address","ifconfig","ipconfig","getmac"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com"}},"funding":{"type":"cooperative","url":"https://bevry.me/fund"},"author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"http://balupton.com"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"Isaac Huang","url":"http://caasih.net"},{"name":"zboszor","url":"https://github.com/zboszor"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=0.10"},"editions":[{"description":"coffeescript source code with require for modules","directory":"source","entry":"index.coffee","tags":["coffeescript","require"],"engines":false},{"description":"coffeescript compiled for node.js with require for modules","directory":"edition-esnext","entry":"index.js","tags":["javascript","esnext","require"],"engines":{"node":"6 || 8 || 10 || 12 || 13","browsers":false}},{"description":"coffeescript compiled for node.js 0.10 with require for modules","directory":"edition-node-0.10","entry":"index.js","tags":["javascript","require"],"engines":{"node":"0.10 || 0.12 || 4 || 6 || 8 || 10 || 12 || 13","browsers":false}}],"bin":{"getmac-node":"bin.js"},"main":"index.js","dependencies":{"editions":"^2.2.0","extract-opts":"^3.3.1"},"devDependencies":{"@babel/cli":"^7.7.0","@babel/core":"^7.7.2","@babel/plugin-proposal-object-rest-spread":"^7.6.2","@babel/preset-env":"^7.7.1","assert-helpers":"4.10.0","coffeelint":"^2.1.0","coffeescript":"^2.4.1","kava":"^3.2.0","projectz":"^1.9.0","valid-directory":"^1.0.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:edition-esnext && npm run our:compile:edition-node-0.10","our:compile:edition-esnext":"coffee -bco ./edition-esnext ./source","our:compile:edition-node-0.10":"env BABEL_ENV=edition-node-0.10 coffee -bcto ./edition-node-0.10/ ./source","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:projectz","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:coffeelint && npm run our:verify:directory","our:verify:coffeelint":"coffeelint ./source","our:verify:directory":"npx valid-directory","test":"node ./test.js"},"babel":{"env":{"edition-node-0.10":{"sourceType":"script","presets":[["@babel/preset-env",{"targets":{"node":"0.10"},"modules":"commonjs"}]],"plugins":["@babel/proposal-object-rest-spread"]}}},"gitHead":"e765d667c7ad4abb7f749358c5179d409d1df07c","_id":"getmac@1.5.0","_nodeVersion":"12.13.0","_npmVersion":"6.12.0","dist":{"shasum":"d07d09f75e6a12a921007be106e74a69110c9053","size":8332,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-1.5.0.tgz","integrity":"sha512-J3/sNFjlVS7/KyS5L70nvubmhpELgz2V/Izd/fjmhmTujT1IKCyw7njHDxTVJNSalVwwaTSz0hA0Wb8S18daEQ=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_1.5.0_1573600932567_0.04816042448267588"},"_hasShrinkwrap":false,"publish_time":1573600932679,"_cnpm_publish_time":1573600932679,"_cnpmcore_publish_time":"2021-12-16T22:29:11.856Z"},"1.5.0-next.1573600808.e765d667c7ad4abb7f749358c5179d409d1df07c":{"name":"getmac","version":"1.5.0-next.1573600808.e765d667c7ad4abb7f749358c5179d409d1df07c","description":"Get the mac address of the current machine you are on","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["mac","mac-address","ifconfig","ipconfig","getmac"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","travisTLD":"com"}},"funding":{"type":"cooperative","url":"https://bevry.me/fund"},"author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"http://balupton.com"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"Isaac Huang","url":"http://caasih.net"},{"name":"zboszor","url":"https://github.com/zboszor"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=0.10"},"editions":[{"description":"coffeescript source code with require for modules","directory":"source","entry":"index.coffee","tags":["coffeescript","require"],"engines":false},{"description":"coffeescript compiled for node.js with require for modules","directory":"edition-esnext","entry":"index.js","tags":["javascript","esnext","require"],"engines":{"node":"6 || 8 || 10 || 12 || 13","browsers":false}},{"description":"coffeescript compiled for node.js 0.10 with require for modules","directory":"edition-node-0.10","entry":"index.js","tags":["javascript","require"],"engines":{"node":"0.10 || 0.12 || 4 || 6 || 8 || 10 || 12 || 13","browsers":false}}],"bin":{"getmac-node":"bin.js"},"main":"index.js","dependencies":{"editions":"^2.2.0","extract-opts":"^3.3.1"},"devDependencies":{"@babel/cli":"^7.7.0","@babel/core":"^7.7.2","@babel/plugin-proposal-object-rest-spread":"^7.6.2","@babel/preset-env":"^7.7.1","assert-helpers":"4.10.0","coffeelint":"^2.1.0","coffeescript":"^2.4.1","kava":"^3.2.0","projectz":"^1.9.0","valid-directory":"^1.0.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:edition-esnext && npm run our:compile:edition-node-0.10","our:compile:edition-esnext":"coffee -bco ./edition-esnext ./source","our:compile:edition-node-0.10":"env BABEL_ENV=edition-node-0.10 coffee -bcto ./edition-node-0.10/ ./source","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:projectz","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:coffeelint && npm run our:verify:directory","our:verify:coffeelint":"coffeelint ./source","our:verify:directory":"npx valid-directory","test":"node ./test.js"},"babel":{"env":{"edition-node-0.10":{"sourceType":"script","presets":[["@babel/preset-env",{"targets":{"node":"0.10"},"modules":"commonjs"}]],"plugins":["@babel/proposal-object-rest-spread"]}}},"gitHead":"e765d667c7ad4abb7f749358c5179d409d1df07c","readmeFilename":"README.md","_id":"getmac@1.5.0-next.1573600808.e765d667c7ad4abb7f749358c5179d409d1df07c","_nodeVersion":"12.13.0","_npmVersion":"6.12.0","dist":{"shasum":"f77e993e8ebc988186c7b11364bd947dac3713c5","size":8384,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-1.5.0-next.1573600808.e765d667c7ad4abb7f749358c5179d409d1df07c.tgz","integrity":"sha512-orP0g7ksyeDZw/YbzxXuHBxt780vPHFiv6y5k0ogD6rEhI/CtqKGu9x1ml4LYNqZFIzQk7ER+n5nu5huT5j84Q=="},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_1.5.0-next.1573600808.e765d667c7ad4abb7f749358c5179d409d1df07c_1573600809845_0.685834389101732"},"_hasShrinkwrap":false,"publish_time":1573600810015,"_cnpm_publish_time":1573600810015,"_cnpmcore_publish_time":"2021-12-16T22:29:12.087Z"},"1.4.6":{"name":"getmac","version":"1.4.6","description":"Get the mac address of the current machine you are on","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["mac","mac-address","ifconfig","ipconfig","getmac"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","patreon","opencollective","flattr","paypal","bitcoin","wishlist"],"config":{"patreonUsername":"bevry","opencollectiveUsername":"bevry","flattrUsername":"balupton","paypalURL":"https://bevry.me/paypal","bitcoinURL":"https://bevry.me/bitcoin","wishlistURL":"https://bevry.me/wishlist"}},"author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"http://balupton.com"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"caasi Huang","url":"http://caasih.net"},{"name":"zboszor","url":"https://github.com/zboszor"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=0.10"},"editions":[{"description":"coffeescript source code with require for modules","directory":"source","entry":"index.coffee","syntaxes":["coffeescript","require"],"engines":false},{"description":"coffeescript compiled for node.js with require for modules","directory":"edition-esnext","entry":"index.js","syntaxes":["javascript","esnext","require"],"engines":{"node":">=6","browsers":false}},{"description":"coffeescript compiled for node.js >=0.10 with require for modules","directory":"edition-node-0.10","entry":"index.js","syntaxes":["javascript","require"],"engines":{"node":"0.10 || 0.12 || 4 || 6 || 8 || 10","browsers":false}}],"bin":{"getmac-node":"bin.js"},"main":"index.js","dependencies":{"editions":"^2.0.2","extract-opts":"^3.2.0"},"devDependencies":{"assert-helpers":"^4.5.1","babel-cli":"^6.26.0","babel-core":"^6.26.0","babel-preset-env":"^1.7.0","coffeelint":"^2.1.0","coffeescript":"^2.3.1","joe":"^2.0.2","joe-reporter-console":"^2.0.2","projectz":"^1.4.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition:* ./es2015 ./es5 ./out","our:compile":"npm run our:compile:edition && npm run our:compile:edition-node-0.10","our:compile:edition":"npm run our:compile:edition:esnext","our:compile:edition-node-0.10":"env BABEL_ENV=edition-node-0.10 coffee -bcto ./edition-node-0.10/ ./source","our:compile:edition:esnext":"coffee -bco ./edition-esnext ./source","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:projectz","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:npm","our:setup:npm":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:coffeelint","our:verify:coffeelint":"coffeelint ./source","test":"node --harmony ./test.js --joe-reporter=console"},"babel":{"env":{"edition-node-0.10":{"presets":[["env",{"targets":{"node":"0.10"}}]]}}},"gitHead":"5619c8dbdbad32ae8e24ee256410612f0be5b44d","_id":"getmac@1.4.6","_npmVersion":"5.6.0","_nodeVersion":"8.11.4","_npmUser":{"name":"anonymous","email":"us@bevry.me"},"dist":{"shasum":"ffe7db07900e222916939d44e4c7274adbecc662","size":7648,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-1.4.6.tgz","integrity":"sha512-3JPwiIr4P6Sgr6y6SVXX0+l2mrB6pyf4Cdyua7rvEV7SveWQkAp11vrkNym8wvRxzLrBenKRcwe93asdghuwWg=="},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_1.4.6_1535976744407_0.3824318371748945"},"_hasShrinkwrap":false,"publish_time":1535976744722,"_cnpm_publish_time":1535976744722,"_cnpmcore_publish_time":"2021-12-16T22:29:12.312Z"},"1.4.5":{"name":"getmac","version":"1.4.5","description":"Get the mac address of the current machine you are on","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["mac","mac-address","ifconfig","ipconfig","getmac"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","patreon","opencollective","flattr","paypal","bitcoin","wishlist"],"config":{"patreonUsername":"bevry","opencollectiveUsername":"bevry","flattrUsername":"balupton","paypalURL":"https://bevry.me/paypal","bitcoinURL":"https://bevry.me/bitcoin","wishlistURL":"https://bevry.me/wishlist"}},"author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"http://balupton.com"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"caasi Huang","url":"http://caasih.net"},{"name":"zboszor","url":"https://github.com/zboszor"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=0.10"},"editions":[{"description":"coffeescript source code with require for modules","directory":"source","entry":"index.coffee","syntaxes":["coffeescript","require"],"engines":false},{"description":"coffeescript compiled for node.js with require for modules","directory":"edition:esnext","entry":"index.js","syntaxes":["javascript","esnext","require"],"engines":{"node":">=6","browsers":false}},{"description":"coffeescript compiled for node.js >=0.10 with require for modules","directory":"edition:node:0.10","entry":"index.js","syntaxes":["javascript","require"],"engines":{"node":"0.10 || 0.12 || 4 || 6 || 8 || 10","browsers":false}}],"bin":{"getmac-node":"bin.js"},"main":"index.js","dependencies":{"editions":"^2.0.0","extract-opts":"^3.2.0"},"devDependencies":{"assert-helpers":"^4.5.1","babel-cli":"^6.26.0","babel-core":"^6.26.0","babel-preset-env":"^1.7.0","coffeelint":"^2.1.0","coffeescript":"^2.3.1","joe":"^2.0.2","joe-reporter-console":"^2.0.2","projectz":"^1.4.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition:* ./es2015 ./es5 ./out","our:compile":"npm run our:compile:edition","our:compile:edition":"npm run our:compile:edition:esnext && npm run our:compile:edition:node","our:compile:edition:esnext":"coffee -bco ./edition:esnext ./source","our:compile:edition:node":"npm run our:compile:edition:node:0.10","our:compile:edition:node:0.10":"env BABEL_ENV=edition:node:0.10 coffee -bcto ./edition:node:0.10/ ./source","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:projectz","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:npm","our:setup:npm":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:coffeelint","our:verify:coffeelint":"coffeelint ./source","test":"node --harmony ./test.js --joe-reporter=console"},"babel":{"env":{"edition:node:0.10":{"presets":[["env",{"targets":{"node":"0.10"}}]]}}},"gitHead":"5a13b2e2fa731761fe349718c610713a4c8a1e80","_id":"getmac@1.4.5","_npmVersion":"5.6.0","_nodeVersion":"8.11.4","_npmUser":{"name":"anonymous","email":"us@bevry.me"},"dist":{"shasum":"266ca069ee11fed135b01946f948d2a2955b78e5","size":7637,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-1.4.5.tgz","integrity":"sha512-Y4Zu6i3zXAnH+Q2zSdnV8SSmyu3BisdfQhsH8YLsC/7vTxgNTTT/JzHWmU3tZEim8hvaCtZLaE5E95wo8P4oGQ=="},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_1.4.5_1535061632795_0.6717680915023656"},"_hasShrinkwrap":false,"publish_time":1535061632884,"_cnpm_publish_time":1535061632884,"_cnpmcore_publish_time":"2021-12-16T22:29:12.550Z"},"1.4.4":{"name":"getmac","version":"1.4.4","description":"Get the mac address of the current machine you are on","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["mac","mac-address","ifconfig","ipconfig","getmac"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","patreon","opencollective","flattr","paypal","bitcoin","wishlist"],"config":{"patreonUsername":"bevry","opencollectiveUsername":"bevry","flattrUsername":"balupton","paypalURL":"https://bevry.me/paypal","bitcoinURL":"https://bevry.me/bitcoin","wishlistURL":"https://bevry.me/wishlist"}},"author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"http://balupton.com"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"caasi Huang","url":"http://caasih.net"},{"name":"zboszor","url":"https://github.com/zboszor"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=0.10"},"editions":[{"description":"coffeescript source code with require for modules","directory":"source","entry":"index.coffee","syntaxes":["coffeescript","require"],"engines":false},{"description":"coffeescript compiled for node.js true with require for modules","directory":"edition:esnext","entry":"index.js","syntaxes":["javascript","esnext","require"],"engines":{"node":">=6","browsers":false}},{"description":"coffeescript compiled for node.js >=0.10 with require for modules","directory":"edition:node:0.10","entry":"index.js","syntaxes":["javascript","require"],"engines":{"node":"0.10 || 0.12 || 4 || 6 || 8 || 10","browsers":false}}],"bin":{"getmac-node":"bin.js"},"main":"index.js","dependencies":{"editions":"^2.0.0","extract-opts":"^3.2.0"},"devDependencies":{"assert-helpers":"^4.5.1","babel-cli":"^6.26.0","babel-core":"^6.26.0","babel-preset-env":"^1.7.0","babel-preset-es2015":"^6.24.1","coffeelint":"^2.1.0","coffeescript":"^2.3.1","joe":"^2.0.2","joe-reporter-console":"^2.0.2","projectz":"^1.4.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition:* ./es2015 ./es5 ./out","our:compile":"npm run our:compile:edition","our:compile:edition":"npm run our:compile:edition:esnext && npm run our:compile:edition:node","our:compile:edition:esnext":"coffee -bco ./edition:esnext ./source","our:compile:edition:node":"npm run our:compile:edition:node:0.10","our:compile:edition:node:0.10":"env BABEL_ENV=edition:node:0.10 coffee -bcto ./edition:node:0.10/ ./source","our:deploy":"echo no need for this project","our:meta":"npm run our:meta:projectz","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin master && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:setup":"npm run our:setup:npm","our:setup:npm":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:coffeelint","our:verify:coffeelint":"coffeelint ./source","test":"node --harmony ./test.js --joe-reporter=console"},"babel":{"env":{"edition:node:0.10":{"presets":[["env",{"targets":{"node":"0.10"}}]]}}},"gitHead":"04c35a7150a8560f2f04497af9469f2957bad972","_id":"getmac@1.4.4","_npmVersion":"5.6.0","_nodeVersion":"8.11.4","_npmUser":{"name":"anonymous","email":"us@bevry.me"},"dist":{"shasum":"8d87fad028b02682e72b5749e951bb7d5e48c7f2","size":7655,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-1.4.4.tgz","integrity":"sha512-LTeK9qXljj9SBufkCzOnufjSL/cdTqLP0C8sTpsoFXF/GPgMSgu6ZkQxk90lHqPHdg4i5d1fz/mN7bdTY5InQQ=="},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_1.4.4_1534677868150_0.037357311253716"},"_hasShrinkwrap":false,"publish_time":1534677868253,"_cnpm_publish_time":1534677868253,"_cnpmcore_publish_time":"2021-12-16T22:29:12.760Z"},"1.4.3":{"name":"getmac","version":"1.4.3","description":"Get the mac address of the current machine you are on","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["mac","mac-address","ifconfig","ipconfig","getmac"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","patreon","opencollective","flattr","paypal","bitcoin","wishlist","---","slackin"],"config":{"patreonUsername":"bevry","opencollectiveUsername":"bevry","flattrUsername":"balupton","paypalURL":"https://bevry.me/paypal","bitcoinURL":"https://bevry.me/bitcoin","wishlistURL":"https://bevry.me/wishlist","slackinURL":"https://slack.bevry.me"}},"author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"http://balupton.com"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"caasi Huang","url":"http://caasih.net"},{"name":"zboszor","url":"https://github.com/zboszor"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=0.12"},"editions":[{"description":"Source + CoffeeScript + Require","directory":"source","entry":"index.coffee","syntaxes":["coffeescript","require"]},{"description":"CoffeeScript Compiled + ESNext + Require","directory":"esnext","entry":"index.js","syntaxes":["javascript","esnext","require"]},{"description":"CoffeeScript Compiled + ES2015 + Require","directory":"es2015","entry":"index.js","syntaxes":["javascript","es2015","require"]}],"bin":{"getmac-node":"bin.js"},"main":"index.js","dependencies":{"editions":"^1.3.4","extract-opts":"^3.2.0"},"devDependencies":{"assert-helpers":"^4.5.1","babel-core":"^6.26.0","babel-preset-es2015":"^6.24.1","coffeelint":"^2.1.0","coffeescript":"^2.2.3","joe":"^2.0.2","joe-reporter-console":"^2.0.1","projectz":"^1.4.0"},"scripts":{"our:setup":"npm run our:setup:npm","our:setup:npm":"npm install","our:clean":"rm -Rf ./docs ./es2015 ./es5 ./out","our:compile":"npm run our:compile:coffee:esnext && npm run our:compile:coffee:es2015","our:compile:coffee:esnext":"coffee -bco ./esnext ./source","our:compile:coffee:es2015":"coffee -bcto ./es2015 ./source","our:meta":"npm run our:meta:projectz","our:meta:projectz":"projectz compile","our:verify":"npm run our:verify:coffeelint","our:verify:coffeelint":"coffeelint ./source","our:deploy":"echo no need for this project","our:test":"npm run our:verify && npm test","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:release:push":"git push origin master && git push origin --tags","test":"node --harmony ./test.js --joe-reporter=console"},"gitHead":"c8ee430a1e2ff3fa0262ff2f143a8a3b2319b392","_id":"getmac@1.4.3","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"anonymous","email":"us@bevry.me"},"dist":{"shasum":"c8d7419b714ac1e66350b71effed235c4269ddd9","size":7637,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-1.4.3.tgz","integrity":"sha512-bOZafIX+19cCS5KUjHtlJPZW+4joMa5tISIk5CugjmlZE0zZtjwB59wm56JPXVy5ELivw7g4Z9TEI0EDa2CSwQ=="},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_1.4.3_1528325472214_0.8948948306072795"},"_hasShrinkwrap":false,"publish_time":1528325472302,"_cnpm_publish_time":1528325472302,"_cnpmcore_publish_time":"2021-12-16T22:29:12.950Z"},"1.4.2":{"name":"getmac","version":"1.4.2","description":"Get the mac address of the current machine you are on","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["mac","mac-address","ifconfig","ipconfig","getmac"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","patreon","opencollective","flattr","paypal","bitcoin","wishlist","---","slackin"],"config":{"patreonUsername":"bevry","opencollectiveUsername":"bevry","flattrUsername":"balupton","paypalURL":"https://bevry.me/paypal","bitcoinURL":"https://bevry.me/bitcoin","wishlistURL":"https://bevry.me/wishlist","slackinURL":"https://slack.bevry.me"}},"author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"http://balupton.com"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"caasi Huang","url":"http://caasih.net"},{"name":"zboszor","url":"https://github.com/zboszor"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=0.12"},"editions":[{"description":"Source + CoffeeScript + Require","directory":"source","entry":"index.coffee","syntaxes":["coffeescript","require"]},{"description":"CoffeeScript Compiled + ESNext + Require","directory":"esnext","entry":"index.js","syntaxes":["javascript","esnext","require"]},{"description":"CoffeeScript Compiled + ES2015 + Require","directory":"es2015","entry":"index.js","syntaxes":["javascript","es2015","require"]}],"bin":{"getmac-node":"bin.js"},"main":"index.js","dependencies":{"editions":"^1.3.4","extract-opts":"^3.2.0"},"devDependencies":{"assert-helpers":"^4.5.1","babel-core":"^6.26.0","babel-preset-es2015":"^6.24.1","coffeelint":"^2.1.0","coffeescript":"^2.2.3","joe":"^2.0.2","joe-reporter-console":"^2.0.1","projectz":"^1.4.0"},"scripts":{"our:setup":"npm run our:setup:npm","our:setup:npm":"npm install","our:clean":"rm -Rf ./docs ./es2015 ./es5 ./out","our:compile":"npm run our:compile:coffee:esnext && npm run our:compile:coffee:es2015","our:compile:coffee:esnext":"coffee -bco ./esnext ./source","our:compile:coffee:es2015":"coffee -bcto ./es2015 ./source","our:meta":"npm run our:meta:projectz","our:meta:projectz":"projectz compile","our:verify":"npm run our:verify:coffeelint","our:verify:coffeelint":"coffeelint ./source","our:deploy":"echo no need for this project","our:test":"npm run our:verify && npm test","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:release:push":"git push origin master && git push origin --tags","test":"node --harmony ./test.js --joe-reporter=console"},"gitHead":"4086fd77eab05733965206705e1ff686e4fae272","_id":"getmac@1.4.2","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"anonymous","email":"us@bevry.me"},"dist":{"shasum":"ff16feeaece8b334bd80542d78581889646692a1","size":7554,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-1.4.2.tgz","integrity":"sha512-oFg2inhxNdCQhSH/R3ZUN3Fuy2QWTnpmfdS8hvxEWeYMhRxsdk5C91ge2H7qN+B7yGWW31HHyAXLZ3YxSBZlEg=="},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_1.4.2_1528250307588_0.5013097148680303"},"_hasShrinkwrap":false,"publish_time":1528250307849,"_cnpm_publish_time":1528250307849,"_cnpmcore_publish_time":"2021-12-16T22:29:13.251Z"},"1.4.1":{"name":"getmac","version":"1.4.1","description":"Get the mac address of the current machine you are on","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["mac","mac-address","ifconfig","ipconfig","getmac"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","patreon","opencollective","flattr","paypal","bitcoin","wishlist","---","slackin"],"config":{"patreonUsername":"bevry","opencollectiveUsername":"bevry","flattrUsername":"balupton","paypalURL":"https://bevry.me/paypal","bitcoinURL":"https://bevry.me/bitcoin","wishlistURL":"https://bevry.me/wishlist","slackinURL":"https://slack.bevry.me"}},"author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"http://balupton.com"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"caasi Huang","url":"http://caasih.net"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=0.12"},"editions":[{"description":"Source + CoffeeScript + Require","directory":"source","entry":"index.coffee","syntaxes":["coffeescript","require"]},{"description":"CoffeeScript Compiled + ESNext + Require","directory":"esnext","entry":"index.js","syntaxes":["javascript","esnext","require"]},{"description":"CoffeeScript Compiled + ES2015 + Require","directory":"es2015","entry":"index.js","syntaxes":["javascript","es2015","require"]}],"bin":{"getmac-node":"bin.js"},"main":"index.js","dependencies":{"editions":"^1.3.4","extract-opts":"^3.2.0"},"devDependencies":{"assert-helpers":"^4.5.1","babel-core":"^6.26.0","babel-preset-es2015":"^6.24.1","coffeelint":"^2.1.0","coffeescript":"^2.2.3","joe":"^2.0.2","joe-reporter-console":"^2.0.1","projectz":"^1.4.0"},"scripts":{"our:setup":"npm run our:setup:npm","our:setup:npm":"npm install","our:clean":"rm -Rf ./docs ./es2015 ./es5 ./out","our:compile":"npm run our:compile:coffee:esnext && npm run our:compile:coffee:es2015","our:compile:coffee:esnext":"coffee -bco ./esnext ./source","our:compile:coffee:es2015":"coffee -bcto ./es2015 ./source","our:meta":"npm run our:meta:projectz","our:meta:projectz":"projectz compile","our:verify":"npm run our:verify:coffeelint","our:verify:coffeelint":"coffeelint ./source","our:deploy":"echo no need for this project","our:test":"npm run our:verify && npm test","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:check-changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:release:push":"git push origin master && git push origin --tags","test":"node --harmony ./test.js --joe-reporter=console"},"gitHead":"5c059ef0f6952f1330f223e09846f5df56df4dae","_id":"getmac@1.4.1","_npmVersion":"5.6.0","_nodeVersion":"8.10.0","_npmUser":{"name":"anonymous","email":"us@bevry.me"},"dist":{"shasum":"cfefcb3ee7d7a73cba5292129cb100c19afbe17a","size":7463,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-1.4.1.tgz","integrity":"sha512-mQp+8D+grQX0gG8EJn6VfH0PxE56ZKNsTguOMxPShAiVk9lvH8Ey36eXepG705Ac1HCsvaSrQ/6bPHZ0++F/Mg=="},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_1.4.1_1522210162035_0.6813489719733499"},"_hasShrinkwrap":false,"publish_time":1522210162129,"_cnpm_publish_time":1522210162129,"_cnpmcore_publish_time":"2021-12-16T22:29:13.454Z"},"1.4.0":{"name":"getmac","version":"1.4.0","description":"Get the mac address of the current machine you are on","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["mac","mac-address","ifconfig","ipconfig","getmac"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","patreon","opencollective","gratipay","flattr","paypal","bitcoin","wishlist","---","slackin"],"config":{"patreonUsername":"bevry","opencollectiveUsername":"bevry","gratipayUsername":"bevry","flattrUsername":"balupton","paypalURL":"https://bevry.me/paypal","bitcoinURL":"https://bevry.me/bitcoin","wishlistURL":"https://bevry.me/wishlist","slackinURL":"https://slack.bevry.me"}},"author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"http://balupton.com"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=0.12"},"editions":[{"description":"Source + CoffeeScript + Require","directory":"source","entry":"index.coffee","syntaxes":["coffeescript","require"]},{"description":"CoffeeScript Compiled + ESNext + Require","directory":"esnext","entry":"index.js","syntaxes":["javascript","esnext","require"]},{"description":"CoffeeScript Compiled + ES2015 + Require","directory":"es2015","entry":"index.js","syntaxes":["javascript","es2015","require"]}],"bin":{"getmac-node":"bin.js"},"main":"index.js","dependencies":{"editions":"^1.3.3","extract-opts":"^3.2.0"},"devDependencies":{"assert-helpers":"^4.5.0","babel-core":"^6.26.0","babel-preset-es2015":"^6.24.1","coffeelint":"^2.0.7","coffeescript":"^2.1.1","joe":"^2.0.2","joe-reporter-console":"^2.0.1","projectz":"^1.4.0"},"scripts":{"our:setup":"npm run our:setup:npm","our:setup:npm":"npm install","our:clean":"rm -Rf ./docs ./es2015 ./es5 ./out","our:compile":"npm run our:compile:coffee:esnext && npm run our:compile:coffee:es2015","our:compile:coffee:esnext":"coffee -bco ./esnext ./source","our:compile:coffee:es2015":"coffee -bcto ./es2015 ./source","our:meta":"npm run our:meta:projectz","our:meta:projectz":"projectz compile","our:verify":"npm run our:verify:coffeelint","our:verify:coffeelint":"coffeelint ./source","our:test":"npm run our:verify && npm test","our:release":"npm run our:release:prepare && npm run our:release:check && npm run our:release:tag && npm run our:release:push","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:check":"npm run our:release:check:changelog && npm run our:release:check:dirty","our:release:check:changelog":"cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)","our:release:check:dirty":"git diff --exit-code","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"","our:release:push":"git push origin master && git push origin --tags","test":"node --harmony ./test.js --joe-reporter=console"},"gitHead":"8877427f366cde80f33b376ff4e548a780cdb4fc","_id":"getmac@1.4.0","_npmVersion":"5.6.0","_nodeVersion":"8.9.4","_npmUser":{"name":"anonymous","email":"us@bevry.me"},"dist":{"shasum":"9468825e1c17a77256da17e99b887428f8a1443f","size":7105,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-1.4.0.tgz","integrity":"sha512-sfMUDq2Y0RSCszpvjZ4AMw6YkWr7FXdBPpyXq32MQ2mRmK8twqFYj2NfIJdgPq443PQrMYM06Q1KhupOhNTxKA=="},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac-1.4.0.tgz_1516863418548_0.42116959812119603"},"directories":{},"publish_time":1516863418671,"_hasShrinkwrap":false,"_cnpm_publish_time":1516863418671,"_cnpmcore_publish_time":"2021-12-16T22:29:13.664Z"},"1.3.0":{"name":"getmac","version":"1.3.0","description":"Get the mac address of the current machine you are on","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["mac","mac-address","ifconfig","ipconfig","getmac"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","slackin","patreon","gratipay","flattr","paypal","bitcoin","wishlist"],"config":{"patreonUsername":"bevry","gratipayUsername":"bevry","flattrUsername":"balupton","paypalURL":"https://bevry.me/paypal","bitcoinURL":"https://bevry.me/bitcoin","wishlistURL":"https://bevry.me/wishlist","slackinURL":"https://slack.bevry.me"}},"author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"http://balupton.com"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=0.12"},"editions":[{"description":"Source + CoffeeScript + Require","entry":"src/lib/getmac.coffee","directory":"src","syntaxes":["coffeescript","require"]},{"description":"CoffeeScript Compiled JavaScript + ES5 + Require","entry":"es5/lib/getmac.js","directory":"es5","syntaxes":["javascript","es5","require"]}],"main":"es5/lib/getmac.js","bin":{"getmac-node":"bin/getmac-node"},"scripts":{"setup":"npm install","clean":"rm -Rf ./docs ./es5","compile":"npm run compile:coffeescript","compile:coffeescript":"coffee -bco ./es5 ./src","meta":"npm run meta:projectz","meta:projectz":"projectz compile","prepare":"npm run compile && npm run test && npm run meta","release":"npm run prepare && npm run release:publish && npm run release:tag && npm run release:push","release:publish":"npm publish","release:tag":"git tag v$npm_package_version -a","release:push":"git push origin master && git push origin --tags","pretest":"npm run test:coffeelint","test:coffeelint":"coffeelint ./src","test":"node --harmony ./es5/test/everything-test.js"},"dependencies":{"extract-opts":"^3.2.0"},"devDependencies":{"chai":"^3.5.0","coffee-script":"^1.10.0","coffeelint":"^1.15.7","joe":"^1.6.0","joe-reporter-console":"^1.2.1","projectz":"^1.1.5"},"gitHead":"9efcab26c6d94e455a2fae1320a394cbad9f5774","_id":"getmac@1.3.0","_npmVersion":"5.6.0","_nodeVersion":"9.4.0","_npmUser":{"name":"anonymous","email":"b@lupton.cc"},"dist":{"shasum":"66e2935902fa7dac638cd90ecf0cdf49574541af","size":5261,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-1.3.0.tgz","integrity":"sha512-c9NEjDTtKtkIBH56f7uWwB5Uy22me1MfS2ARijsEBBWtilb1LtI9nh7lS2TiayDIwrIX4zqPzt9H+eRimAXZzA=="},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac-1.3.0.tgz_1516862128004_0.2440362477209419"},"directories":{},"publish_time":1516862128067,"_hasShrinkwrap":false,"_cnpm_publish_time":1516862128067,"_cnpmcore_publish_time":"2021-12-16T22:29:13.859Z"},"1.2.1":{"name":"getmac","version":"1.2.1","description":"Get the mac address of the current machine you are on","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["mac","mac-address","ifconfig","ipconfig","getmac"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","slackin","patreon","gratipay","flattr","paypal","bitcoin","wishlist"],"config":{"patreonUsername":"bevry","gratipayUsername":"bevry","flattrUsername":"balupton","paypalURL":"https://bevry.me/paypal","bitcoinURL":"https://bevry.me/bitcoin","wishlistURL":"https://bevry.me/wishlist","slackinURL":"https://slack.bevry.me"}},"author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://balupton.com"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=0.12"},"editions":[{"description":"Source + CoffeeScript + Require","entry":"src/lib/getmac.coffee","directory":"src","syntaxes":["coffeescript","require"]},{"description":"CoffeeScript Compiled JavaScript + ES5 + Require","entry":"es5/lib/getmac.js","directory":"es5","syntaxes":["javascript","es5","require"]}],"main":"es5/lib/getmac.js","browser":"es5/lib/getmac.js","bin":{"getmac-node":"bin/getmac-node"},"scripts":{"setup":"npm install","clean":"rm -Rf ./docs ./es5","compile":"npm run compile:coffeescript","compile:coffeescript":"coffee -bco ./es5 ./src","meta":"npm run meta:projectz","meta:projectz":"projectz compile","prepare":"npm run compile && npm run test && npm run meta","release":"npm run prepare && npm run release:publish && npm run release:tag && npm run release:push","release:publish":"npm publish","release:tag":"git tag v$npm_package_version -a","release:push":"git push origin master && git push origin --tags","pretest":"npm run test:coffeelint","test:coffeelint":"coffeelint ./src","test":"node --harmony ./es5/test/everything-test.js"},"dependencies":{"extract-opts":"^3.2.0"},"devDependencies":{"chai":"^3.5.0","coffee-script":"^1.10.0","coffeelint":"^1.15.7","joe":"^1.6.0","joe-reporter-console":"^1.2.1","projectz":"^1.1.5"},"gitHead":"49b1832c88b2c0edbdc7a172b6bd14dcfc45e305","_id":"getmac@1.2.1","_shasum":"0d095fd0627850043eac1dcfa0b120bbdc1426d1","_from":".","_npmVersion":"3.8.7","_nodeVersion":"6.0.0","_npmUser":{"name":"anonymous","email":"b@lupton.cc"},"dist":{"shasum":"0d095fd0627850043eac1dcfa0b120bbdc1426d1","size":5078,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-1.2.1.tgz","integrity":"sha512-yv8ujibNaAi+Jw4hsBIGFcy8srogCLfdqam37DY5Q/rKjUnTet56Sbm1z5uvQMCjwKmSQE/vxYTI6BWsLtID+w=="},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/getmac-1.2.1.tgz_1462858392407_0.777876386186108"},"directories":{},"publish_time":1462858392846,"_hasShrinkwrap":false,"_cnpm_publish_time":1462858392846,"_cnpmcore_publish_time":"2021-12-16T22:29:14.109Z"},"1.1.0":{"name":"getmac","version":"1.1.0","description":"Get the mac address of the current machine you are on","homepage":"https://github.com/bevry/getmac","license":"MIT","keywords":["mac","mac-address","ifconfig","ipconfig","getmac"],"badges":{"list":["travisci","npmversion","npmdownloads","daviddm","daviddmdev","---","slackin","patreon","gratipay","flattr","paypal","bitcoin","wishlist"],"config":{"patreonUsername":"bevry","gratipayUsername":"bevry","flattrUsername":"balupton","paypalURL":"https://bevry.me/paypal","bitcoinURL":"https://bevry.me/bitcoin","wishlistURL":"https://bevry.me/wishlist","slackinURL":"https://slack.bevry.me"}},"author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://balupton.com"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=0.12"},"editions":[{"description":"Source + CoffeeScript + Require","entry":"src/lib/getmac.coffee","directory":"src","syntaxes":["coffeescript","require"]},{"description":"CoffeeScript Compiled JavaScript + ES5 + Require","entry":"es5/lib/getmac.js","directory":"es5","syntaxes":["javascript","es5","require"]}],"main":"es5/lib/getmac.js","browser":"es5/lib/getmac.js","bin":{"getmac-node":"bin/getmac-node"},"scripts":{"setup":"npm install","clean":"rm -Rf ./docs ./es5","compile":"npm run compile:coffeescript","compile:coffeescript":"coffee -bco ./es5 ./src","meta":"npm run meta:projectz","meta:projectz":"projectz compile","prepare":"npm run compile && npm run test && npm run meta","release":"npm run prepare && npm run release:publish && npm run release:tag && npm run release:push","release:publish":"npm publish","release:tag":"git tag v$npm_package_version -a","release:push":"git push origin master && git push origin --tags","pretest":"npm run test:coffeelint","test:coffeelint":"coffeelint ./src","test":"node --harmony ./es5/test/everything-test.js"},"dependencies":{"extract-opts":"^3.2.0"},"devDependencies":{"chai":"^3.5.0","coffee-script":"^1.10.0","coffeelint":"^1.15.7","joe":"^1.6.0","joe-reporter-console":"^1.2.1","projectz":"^1.1.5"},"gitHead":"8718ce9d11e1b5c0555ed8cedb2dbf0019ec9ad8","_id":"getmac@1.1.0","_shasum":"ca35becfe96329a83baa34ae3f721cd0b1762a19","_from":".","_npmVersion":"3.8.7","_nodeVersion":"6.0.0","_npmUser":{"name":"anonymous","email":"b@lupton.cc"},"dist":{"shasum":"ca35becfe96329a83baa34ae3f721cd0b1762a19","size":5004,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-1.1.0.tgz","integrity":"sha512-fxR2rHx2QxgbsIKbXwthuHP9iMsF5t6GSWZ7RR3weDxo0zdQHooEfZLqEaQLtbe2hGQzMX1wy89Pqms79C4pGg=="},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/getmac-1.1.0.tgz_1462858088718_0.1555746637750417"},"directories":{},"publish_time":1462858089117,"_hasShrinkwrap":false,"_cnpm_publish_time":1462858089117,"_cnpmcore_publish_time":"2021-12-16T22:29:14.323Z"},"1.0.7":{"name":"getmac","version":"1.0.7","description":"Get the mac address of the current machine you are on","homepage":"https://github.com/bevry/getmac","license":{"type":"MIT"},"badges":{"travis":true,"npm":true,"npmdownloads":true,"david":true,"daviddev":true,"gratipay":"bevry","flattr":"344188/balupton-on-Flattr","paypal":"QB8GQPZAH84N6","bitcoin":"https://coinbase.com/checkouts/9ef59f5479eec1d97d63382c9ebcb93a","wishlist":"http://amzn.com/w/2F8TXKSNAFG4V"},"keywords":["mac","mac-address","ifconfig","ipconfig","getmac"],"author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://github.com/balupton"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"https://github.com/bevry/getmac.git"},"engines":{"node":">=0.4"},"dependencies":{"extract-opts":"^2.2.0"},"devDependencies":{"coffee-script":"^1.9.1","chai":"^2.1.0","joe":"^1.6.0","joe-reporter-console":"^1.2.1","projectz":"^0.5.0"},"directories":{"lib":"./out/lib"},"bin":{"getmac-node":"./bin/getmac-node"},"scripts":{"test":"node ./out/test/everything-test.js"},"main":"./out/lib/getmac","cakeConfiguration":{"COFFEE_SRC_PATH":"src"},"gitHead":"5be1839527961abfd8312e9809df953223c0ae5c","_id":"getmac@1.0.7","_shasum":"94460f9778698d2e159a03da6c165689f22cdd67","_from":".","_npmVersion":"2.6.1","_nodeVersion":"0.12.0","_npmUser":{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"},"dist":{"shasum":"94460f9778698d2e159a03da6c165689f22cdd67","size":4157,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-1.0.7.tgz","integrity":"sha512-Cl7xiGwKwy8zP21gSPCG9Y8CpSBp1zbcj54sKE1D8P4LSidP1/Sj4dWlgpr/CW6KWkQbj9q4EgfBhLOtYP1ndw=="},"publish_time":1425542771875,"_hasShrinkwrap":false,"_cnpm_publish_time":1425542771875,"_cnpmcore_publish_time":"2021-12-16T22:29:14.541Z"},"1.0.6":{"name":"getmac","version":"1.0.6","description":"Get the mac address of the current machine you are on","homepage":"https://github.com/bevry/getmac","license":{"type":"MIT"},"badges":{"travis":true,"npm":true,"gittip":"bevry","flattr":"344188/balupton-on-Flattr","paypal":"QB8GQPZAH84N6"},"keywords":["mac","mac-address","ifconfig","ipconfig","getmac"],"author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://github.com/balupton"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"https://github.com/bevry/getmac.git"},"engines":{"node":">=0.4"},"dependencies":{"extract-opts":"~2.2.0"},"devDependencies":{"coffee-script":"~1.6.3","chai":"~1.8.1","joe":"~1.3.0","joe-reporter-console":"~1.2.1","projectz":"~0.2.3"},"directories":{"lib":"./out/lib"},"bin":{"getmac-node":"./bin/getmac-node"},"scripts":{"test":"node ./out/test/everything-test.js"},"main":"./out/lib/getmac","readmeFilename":"README.md","_id":"getmac@1.0.6","dist":{"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-1.0.6.tgz","shasum":"f222c8178be9de24899df5a04e77557fbaf4e522","size":3790,"noattachment":false,"integrity":"sha512-Aga2cvjpnEf+jppwrGXx1DKn6sR0uBIERLFGEILWqejEgy49PnnskISDYUIFr1OhO5IdagMna/L21MPGSIg+OQ=="},"_from":".","_npmVersion":"1.3.11","_npmUser":{"name":"anonymous","email":"b@lupton.cc"},"publish_time":1382833622720,"_hasShrinkwrap":false,"_cnpm_publish_time":1382833622720,"_cnpmcore_publish_time":"2021-12-16T22:29:14.755Z"},"1.0.5":{"name":"getmac","version":"1.0.5","description":"Get the mac address of the current machine you are on","homepage":"https://github.com/bevry/getmac","keywords":["mac","mac-address","ifconfig","ipconfig","getmac"],"author":{"name":"Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://github.com/balupton"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"https://github.com/bevry/getmac.git"},"engines":{"node":">=0.4"},"dependencies":{"extract-opts":"~2.2.0","joe":"~1.3.0","joe-reporter-console":"~1.2.1"},"devDependencies":{"coffee-script":"~1.6.3","chai":"~1.7.2","joe":"~1.3.0"},"directories":{"lib":"./out/lib"},"bin":{"getmac-node":"./bin/getmac-node"},"scripts":{"test":"node ./out/test/everything-test.js"},"main":"./out/lib/getmac","readmeFilename":"README.md","_id":"getmac@1.0.5","dist":{"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-1.0.5.tgz","shasum":"4ce0468a83e5fc2f2d337fc0c3c9be2c94a6344f","size":2651,"noattachment":false,"integrity":"sha512-oovrdiO/7RD9eT8uI7s0xd3SbAPLQxpwp3owZROwh+5qpgSwPNzVolkJRD1eFSsyTxdNE2P1476h7EhJXiuaww=="},"_from":".","_npmVersion":"1.3.9","_npmUser":{"name":"anonymous","email":"b@lupton.cc"},"publish_time":1378060169220,"_hasShrinkwrap":false,"_cnpm_publish_time":1378060169220,"_cnpmcore_publish_time":"2021-12-16T22:29:14.977Z"},"1.0.4":{"name":"getmac","version":"1.0.4","description":"Get the mac address of the current machine you are on","homepage":"https://github.com/bevry/getmac","keywords":["mac","mac-address","ifconfig","ipconfig","getmac"],"author":{"name":"Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://github.com/balupton"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"https://github.com/bevry/getmac.git"},"engines":{"node":">=0.4"},"dependencies":{},"devDependencies":{"coffee-script":"~1.4.0","chai":"~1.5.0","joe":"~1.1.1"},"directories":{"lib":"./out/lib"},"bin":{"getmac-node":"./bin/getmac-node"},"scripts":{"test":"node ./out/test/everything-test.js --joe-reporter=list"},"main":"./out/lib/getmac","readmeFilename":"README.md","_id":"getmac@1.0.4","dist":{"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-1.0.4.tgz","shasum":"77db22b4c9376d81894dece3ed56f3c3555364c6","size":2266,"noattachment":false,"integrity":"sha512-b9Rx1EOxM+FaSZoRmkMunUlLaca/OEY1ilFo5fUFPa/Q4+wTDH6nMgkZYp694wvqh9PUIvwv1pHZ2C1ZU7loww=="},"_from":".","_npmVersion":"1.2.2","_npmUser":{"name":"anonymous","email":"b@lupton.cc"},"publish_time":1360652902865,"_hasShrinkwrap":false,"_cnpm_publish_time":1360652902865,"_cnpmcore_publish_time":"2021-12-16T22:29:15.154Z"},"1.0.3":{"name":"getmac","version":"1.0.3","description":"Get the mac address of the current machine you are on","homepage":"https://github.com/bevry/getmac","keywords":["mac","mac-address","ifconfig","ipconfig","getmac"],"author":{"name":"Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://github.com/balupton"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"https://github.com/bevry/getmac.git"},"engines":{"node":">=0.4"},"dependencies":{},"devDependencies":{"coffee-script":"~1.4.0","chai":"~1.5.0","joe":"~1.1.1"},"directories":{"lib":"./out/lib"},"bin":{"getmac-node":"./bin/getmac-node"},"scripts":{"test":"node ./out/test/everything-test.js --joe-reporter=list"},"main":"./out/lib/getmac","readmeFilename":"README.md","_id":"getmac@1.0.3","dist":{"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-1.0.3.tgz","shasum":"e9cf8669968f66a51ffc9e71a995096228358120","size":2304,"noattachment":false,"integrity":"sha512-yR6+VsEPn7uGjWsDlVFvDhfb0O+IRLk4q40MpNqzU34Hq9Axt4kX+ghW1DuxGZQokxGc0zkPSiz+N/PKKm4F5A=="},"_from":".","_npmVersion":"1.2.2","_npmUser":{"name":"anonymous","email":"b@lupton.cc"},"publish_time":1360651960553,"_hasShrinkwrap":false,"_cnpm_publish_time":1360651960553,"_cnpmcore_publish_time":"2021-12-16T22:29:15.380Z"},"1.0.2":{"name":"getmac","version":"1.0.2","description":"Get the mac address of the current machine you are on","homepage":"https://github.com/bevry/getmac","keywords":["mac","mac-address","ifconfig","ipconfig","getmac"],"author":{"name":"Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://github.com/balupton"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"https://github.com/bevry/getmac.git"},"engines":{"node":">=0.4"},"dependencies":{},"devDependencies":{"coffee-script":"~1.4.0","chai":"~1.5.0","joe":"~1.1.1"},"directories":{"lib":"./out/lib"},"bin":{"getmac-node":"./bin/getmac-node"},"scripts":{"test":"node ./out/test/everything-test.js --joe-reporter=list"},"main":"./out/lib/getmac","readmeFilename":"README.md","_id":"getmac@1.0.2","dist":{"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-1.0.2.tgz","shasum":"5c92913302e084cf115dc8cfd9111c5da4535b53","size":2309,"noattachment":false,"integrity":"sha512-Lcd0zXrWvrlqoiL2s2/zN1KX6TGpmNdCJCkazSyfiLDv+xVpzD132ASl3+swrXefg4MCXf7rzy9E3CZoc7Jk/w=="},"_from":".","_npmVersion":"1.2.2","_npmUser":{"name":"anonymous","email":"b@lupton.cc"},"publish_time":1360650530553,"_hasShrinkwrap":false,"_cnpm_publish_time":1360650530553,"_cnpmcore_publish_time":"2021-12-16T22:29:15.578Z"},"1.0.1":{"name":"getmac","version":"1.0.1","description":"Get the mac address of the current machine you are on","homepage":"https://github.com/bevry/getmac","keywords":["mac","mac-address","ifconfig","ipconfig","getmac"],"author":{"name":"Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://github.com/balupton"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"https://github.com/bevry/getmac.git"},"engines":{"node":">=0.4"},"dependencies":{},"devDependencies":{"coffee-script":"~1.4.0","chai":"~1.5.0","joe":"~1.1.1"},"directories":{"lib":"./out/lib"},"bin":{"getmac-node":"./bin/getmac-node"},"scripts":{"test":"node ./out/test/everything-test.js --joe-reporter=list"},"main":"./out/lib/getmac","readmeFilename":"README.md","_id":"getmac@1.0.1","dist":{"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-1.0.1.tgz","shasum":"0364e20cb298087ff7f5b53c7d6e98e470c2f73d","size":2308,"noattachment":false,"integrity":"sha512-okDXe8uefTaaIYC+7ipU3EZGUbjfYGUrtVvvEyZruvBNAEfvrzdBF/6GbOtVpdUC+W/WefzamY1mNv7ctLdERw=="},"_from":".","_npmVersion":"1.2.2","_npmUser":{"name":"anonymous","email":"b@lupton.cc"},"publish_time":1360649509342,"_hasShrinkwrap":false,"_cnpm_publish_time":1360649509342,"_cnpmcore_publish_time":"2021-12-16T22:29:15.931Z"},"1.0.0":{"name":"getmac","version":"1.0.0","description":"Get the mac address of the current machine you are on","homepage":"https://github.com/bevry/getmac","keywords":["mac","mac-address","ifconfig","ipconfig","getmac"],"author":{"name":"Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://github.com/balupton"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"https://github.com/bevry/getmac.git"},"engines":{"node":">=0.4"},"dependencies":{},"devDependencies":{"coffee-script":"~1.4.0","chai":"~1.5.0","joe":"~1.1.1"},"directories":{"lib":"./out/lib"},"bin":{"getmac":"./bin/getmac"},"scripts":{"test":"node ./out/test/everything-test.js --joe-reporter=list"},"main":"./out/lib/getmac","readmeFilename":"README.md","_id":"getmac@1.0.0","dist":{"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-1.0.0.tgz","shasum":"a17e21f319f24bb6ea00ff5b677ddbfe04d42d3a","size":2296,"noattachment":false,"integrity":"sha512-nZGOoqfiFO8Z9+uNX619Vh1gisRqbwWWwSAbVMEO2YxKoAl8LOWRfuKeKe0SQOqV21305F//8cn9PcRmuculxA=="},"_from":".","_npmVersion":"1.2.2","_npmUser":{"name":"anonymous","email":"b@lupton.cc"},"publish_time":1360649320973,"_hasShrinkwrap":false,"_cnpm_publish_time":1360649320973,"_cnpmcore_publish_time":"2021-12-16T22:29:16.182Z"},"5.21.0-next.1698808259.742a8601629b776cb8dfddc94671d989fc621569":{"name":"getmac","version":"5.21.0-next.1698808259.742a8601629b776cb8dfddc94671d989fc621569","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"Artistic-2.0","keywords":["es2017","export-default","getmac","ifconfig","ipconfig","mac","mac-address","node","typed","types","typescript"],"badges":{"list":["githubworkflow","npmversion","npmdownloads","---","githubsponsors","thanksdev","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"githubWorkflow":"bevry","githubSponsorsUsername":"balupton","thanksdevGithubUsername":"balupton","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","githubUsername":"bevry","githubRepository":"getmac","githubSlug":"bevry/getmac","npmPackageName":"getmac"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"},{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"us@bevry.me"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://github.com/balupton"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/benoitsepe"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"Isaac Huang","url":"https://github.com/caasi"},{"name":"Jan Pilzer","url":"https://github.com/Hirse"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"zboszor","url":"https://github.com/zboszor"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=10"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["source","typescript","import"],"engines":false},{"description":"TypeScript compiled against ES2017 for Node.js with Require for modules","directory":"edition-es2017","entry":"index.js","tags":["compiled","javascript","es2017","require"],"engines":{"node":"10 || 12 || 14 || 16 || 18 || 20 || 21","browsers":false}},{"description":"TypeScript compiled against ES2017 for Node.js with Import for modules","directory":"edition-es2017-esm","entry":"index.js","tags":["compiled","javascript","es2017","import"],"engines":{"node":"12 || 14 || 16 || 18 || 20 || 21","browsers":false}}],"types":"./compiled-types/","type":"module","main":"edition-es2017/index.js","exports":{"node":{"import":"./edition-es2017-esm/index.js","require":"./edition-es2017/index.js"}},"devDependencies":{"@bevry/update-contributors":"^1.22.0","@types/node":"^20.8.10","@typescript-eslint/eslint-plugin":"^6.9.1","@typescript-eslint/parser":"^6.9.1","assert-helpers":"^8.4.0","eslint":"^8.52.0","eslint-config-bevry":"^3.28.0","eslint-config-prettier":"^9.0.0","eslint-plugin-prettier":"^5.0.1","kava":"^5.15.0","make-deno-edition":"^1.3.0","prettier":"^3.0.3","projectz":"^2.23.0","surge":"^0.23.1","typedoc":"^0.25.3","typescript":"5.2.2","valid-directory":"^4.0.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:deno && npm run our:compile:edition-es2017 && npm run our:compile:edition-es2017-esm && npm run our:compile:types","our:compile:deno":"make-deno-edition --attempt","our:compile:edition-es2017":"tsc --module commonjs --target ES2017 --outDir ./edition-es2017 --project tsconfig.json && ( test ! -d edition-es2017/source || ( mv edition-es2017/source edition-temp && rm -Rf edition-es2017 && mv edition-temp edition-es2017 ) ) && printf '%s' '{\"type\": \"commonjs\"}' > edition-es2017/package.json","our:compile:edition-es2017-esm":"tsc --module ESNext --target ES2017 --outDir ./edition-es2017-esm --project tsconfig.json && ( test ! -d edition-es2017-esm/source || ( mv edition-es2017-esm/source edition-temp && rm -Rf edition-es2017-esm && mv edition-temp edition-es2017-esm ) ) && printf '%s' '{\"type\": \"module\"}' > edition-es2017-esm/package.json","our:compile:types":"tsc --project tsconfig.json --emitDeclarationOnly --declaration --declarationMap --declarationDir ./compiled-types && ( test ! -d compiled-types/source || ( mv compiled-types/source edition-temp && rm -Rf compiled-types && mv edition-temp compiled-types ) )","our:deploy":"printf '%s\n' 'no need for this project'","our:meta":"npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz","our:meta:contributors":"update-contributors","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --exclude '**/+(*test*|node_modules)' --excludeExternals --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep \"v$npm_package_version\" || (printf '%s\n' \"add a changelog entry for v$npm_package_version\" && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (printf '%s\n' 'proper changelog entry not found' && exit -1) && git tag \"v$npm_package_version\" -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier","our:verify:directory":"valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write .","test":"node ./edition-es2017/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"_id":"getmac@5.21.0-next.1698808259.742a8601629b776cb8dfddc94671d989fc621569","readmeFilename":"README.md","gitHead":"742a8601629b776cb8dfddc94671d989fc621569","_nodeVersion":"20.9.0","_npmVersion":"10.1.0","dist":{"integrity":"sha512-KNypjlLyrX/+t83MdN5DVTwL4b4AYWBc4SNgJN8cvJuGonesqoZjYLt+yBzCYg4nxr9pHUSTIOUOIyuCvmPdLQ==","shasum":"59315dd2199ae56e4f32d8adfbf1684eff92cc77","tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-5.21.0-next.1698808259.742a8601629b776cb8dfddc94671d989fc621569.tgz","fileCount":19,"unpackedSize":36459,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEkldReDjwXAxGXYpg55UzUUvWzYz9P8c5cESkl85J9TAiEAuvaEr58+xw8w/KTC0DXN/CBzDb4T4u7+fWl/A3gFIfo="}]},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_5.21.0-next.1698808259.742a8601629b776cb8dfddc94671d989fc621569_1698808261332_0.5976078125208568"},"_hasShrinkwrap":false},"5.21.0":{"name":"getmac","version":"5.21.0","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"Artistic-2.0","keywords":["es2017","export-default","getmac","ifconfig","ipconfig","mac","mac-address","node","typed","types","typescript"],"badges":{"list":["githubworkflow","npmversion","npmdownloads","---","githubsponsors","thanksdev","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"githubWorkflow":"bevry","githubSponsorsUsername":"balupton","thanksdevGithubUsername":"balupton","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","githubUsername":"bevry","githubRepository":"getmac","githubSlug":"bevry/getmac","npmPackageName":"getmac"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"},{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"us@bevry.me"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://github.com/balupton"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/benoitsepe"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"Isaac Huang","url":"https://github.com/caasi"},{"name":"Jan Pilzer","url":"https://github.com/Hirse"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"zboszor","url":"https://github.com/zboszor"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=10"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["source","typescript","import"],"engines":false},{"description":"TypeScript compiled against ES2017 for Node.js with Require for modules","directory":"edition-es2017","entry":"index.js","tags":["compiled","javascript","es2017","require"],"engines":{"node":"10 || 12 || 14 || 16 || 18 || 20 || 21","browsers":false}},{"description":"TypeScript compiled against ES2017 for Node.js with Import for modules","directory":"edition-es2017-esm","entry":"index.js","tags":["compiled","javascript","es2017","import"],"engines":{"node":"12 || 14 || 16 || 18 || 20 || 21","browsers":false}}],"types":"./compiled-types/","type":"module","main":"edition-es2017/index.js","exports":{"node":{"import":"./edition-es2017-esm/index.js","require":"./edition-es2017/index.js"}},"devDependencies":{"@bevry/update-contributors":"^1.22.0","@types/node":"^20.8.10","@typescript-eslint/eslint-plugin":"^6.9.1","@typescript-eslint/parser":"^6.9.1","assert-helpers":"^8.4.0","eslint":"^8.52.0","eslint-config-bevry":"^3.28.0","eslint-config-prettier":"^9.0.0","eslint-plugin-prettier":"^5.0.1","kava":"^5.15.0","make-deno-edition":"^1.3.0","prettier":"^3.0.3","projectz":"^2.23.0","surge":"^0.23.1","typedoc":"^0.25.3","typescript":"5.2.2","valid-directory":"^4.0.0"},"scripts":{"our:clean":"rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:deno && npm run our:compile:edition-es2017 && npm run our:compile:edition-es2017-esm && npm run our:compile:types","our:compile:deno":"make-deno-edition --attempt","our:compile:edition-es2017":"tsc --module commonjs --target ES2017 --outDir ./edition-es2017 --project tsconfig.json && ( test ! -d edition-es2017/source || ( mv edition-es2017/source edition-temp && rm -Rf edition-es2017 && mv edition-temp edition-es2017 ) ) && printf '%s' '{\"type\": \"commonjs\"}' > edition-es2017/package.json","our:compile:edition-es2017-esm":"tsc --module ESNext --target ES2017 --outDir ./edition-es2017-esm --project tsconfig.json && ( test ! -d edition-es2017-esm/source || ( mv edition-es2017-esm/source edition-temp && rm -Rf edition-es2017-esm && mv edition-temp edition-es2017-esm ) ) && printf '%s' '{\"type\": \"module\"}' > edition-es2017-esm/package.json","our:compile:types":"tsc --project tsconfig.json --emitDeclarationOnly --declaration --declarationMap --declarationDir ./compiled-types && ( test ! -d compiled-types/source || ( mv compiled-types/source edition-temp && rm -Rf compiled-types && mv edition-temp compiled-types ) )","our:deploy":"printf '%s\n' 'no need for this project'","our:meta":"npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz","our:meta:contributors":"update-contributors","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -Rf ./docs && typedoc --exclude '**/+(*test*|node_modules)' --excludeExternals --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep \"v$npm_package_version\" || (printf '%s\n' \"add a changelog entry for v$npm_package_version\" && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (printf '%s\n' 'proper changelog entry not found' && exit -1) && git tag \"v$npm_package_version\" -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier","our:verify:directory":"valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write .","test":"node ./edition-es2017/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true},"_id":"getmac@5.21.0","gitHead":"742a8601629b776cb8dfddc94671d989fc621569","_nodeVersion":"20.9.0","_npmVersion":"10.1.0","dist":{"integrity":"sha512-HlgamPXV7PCDqp/LpogJD3JnP4spl6ZDeAfhS/R6lm6Zn/cZqp/x4e1AVxYdjfKkWKMOft9IqBsri/xfj2sX2A==","shasum":"53d370beb49059045bc67132c2832b17c6e48144","tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-5.21.0.tgz","fileCount":19,"unpackedSize":36401,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFDxoySTi9qJR0jC6yxjKFN25M1bGu5nWMu4WfR4M7SOAiEAhYNhWDLoibYgs09ADF+F1OmKnSAHG8ajH74zbd0gBII="}]},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_5.21.0_1698808377755_0.8149602775973355"},"_hasShrinkwrap":false},"6.0.0":{"name":"getmac","version":"6.0.0","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"Artistic-2.0","keywords":["es2022","export-default","getmac","ifconfig","ipconfig","mac","mac-address","node","typed","types","typescript"],"badges":{"list":["githubworkflow","npmversion","npmdownloads","---","githubsponsors","thanksdev","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"githubWorkflow":"bevry","githubSponsorsUsername":"balupton","thanksdevGithubUsername":"balupton","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","githubUsername":"bevry","githubRepository":"getmac","githubSlug":"bevry/getmac","npmPackageName":"getmac"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"},{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"us@bevry.me"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://github.com/balupton"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/benoitsepe"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"Isaac Huang","url":"https://github.com/caasi"},{"name":"Jan Pilzer","url":"https://github.com/Hirse"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"zboszor","url":"https://github.com/zboszor"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=8"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["source","typescript","import"],"engines":false},{"description":"TypeScript compiled against ES2022 for Node.js 8 || 10 || 12 || 14 || 16 || 18 || 20 || 21 with Require for modules","directory":"edition-es2022","entry":"index.js","tags":["compiled","javascript","es2022","require"],"engines":{"node":"8 || 10 || 12 || 14 || 16 || 18 || 20 || 21","browsers":false}},{"description":"TypeScript compiled against ES2022 for Node.js 12 || 14 || 16 || 18 || 20 || 21 with Import for modules","directory":"edition-es2022-esm","entry":"index.js","tags":["compiled","javascript","es2022","import"],"engines":{"node":"12 || 14 || 16 || 18 || 20 || 21","browsers":false}}],"types":"./compiled-types/","type":"module","main":"edition-es2022/index.js","exports":{"node":{"import":"./edition-es2022-esm/index.js","require":"./edition-es2022/index.js"}},"devDependencies":{"@bevry/update-contributors":"^1.23.0","@types/node":"^20.9.0","@typescript-eslint/eslint-plugin":"^6.10.0","@typescript-eslint/parser":"^6.10.0","assert-helpers":"^11.2.0","eslint":"^8.53.0","eslint-config-bevry":"^3.29.0","eslint-config-prettier":"^9.0.0","eslint-plugin-prettier":"^5.0.1","kava":"^7.1.0","prettier":"^3.1.0","projectz":"^2.23.0","surge":"^0.23.1","typedoc":"^0.25.3","typescript":"5.2.2","valid-directory":"^4.1.0"},"scripts":{"our:clean":"rm -rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:edition-es2022 && npm run our:compile:edition-es2022-esm && npm run our:compile:types","our:compile:edition-es2022":"tsc --module commonjs --target ES2022 --outDir ./edition-es2022 --project tsconfig.json && ( test ! -d edition-es2022/source || ( mv edition-es2022/source edition-temp && rm -rf edition-es2022 && mv edition-temp edition-es2022 ) ) && printf '%s' '{\"type\": \"commonjs\"}' > edition-es2022/package.json","our:compile:edition-es2022-esm":"tsc --module ESNext --target ES2022 --outDir ./edition-es2022-esm --project tsconfig.json && ( test ! -d edition-es2022-esm/source || ( mv edition-es2022-esm/source edition-temp && rm -rf edition-es2022-esm && mv edition-temp edition-es2022-esm ) ) && printf '%s' '{\"type\": \"module\"}' > edition-es2022-esm/package.json","our:compile:types":"tsc --project tsconfig.json --emitDeclarationOnly --declaration --declarationMap --declarationDir ./compiled-types && ( test ! -d compiled-types/source || ( mv compiled-types/source edition-temp && rm -rf compiled-types && mv edition-temp compiled-types ) )","our:deploy":"printf '%s\n' 'no need for this project'","our:meta":"npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz","our:meta:contributors":"update-contributors","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -rf ./docs && typedoc --exclude '**/+(*test*|node_modules)' --excludeExternals --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep \"v$npm_package_version\" || (printf '%s\n' \"add a changelog entry for v$npm_package_version\" && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (printf '%s\n' 'proper changelog entry not found' && exit -1) && git tag \"v$npm_package_version\" -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier","our:verify:directory":"valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write .","test":"node ./edition-es2022/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true,"trailingComma":"es5"},"_id":"getmac@6.0.0","gitHead":"6e5a311d119f6d56878fb9573bfebc50935e01b8","_nodeVersion":"20.9.0","_npmVersion":"10.1.0","dist":{"integrity":"sha512-ybBE4RGE3z4aNiPNms/cxUAjHjYwslZhyUEVARLnW4mlvi24kud81vT445jC/rlHaVkb91H+nPQLQu9MhQMfkA==","shasum":"6f45da21688fe8a701171441cfa4fc95d2dfa0b5","tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-6.0.0.tgz","fileCount":17,"unpackedSize":34843,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHqFqHSI1SVne/PqmrwNa98cj9AzSCzqX/KaqbdnOqt8AiAcL0Wi1iAqhNJV5CmvZY5ft7gkGSmoanlKaUB38C19Ww=="}]},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_6.0.0_1699889181538_0.25003612053454627"},"_hasShrinkwrap":false},"6.0.0-next.1699889210.6e5a311d119f6d56878fb9573bfebc50935e01b8":{"name":"getmac","version":"6.0.0-next.1699889210.6e5a311d119f6d56878fb9573bfebc50935e01b8","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"Artistic-2.0","keywords":["es2022","export-default","getmac","ifconfig","ipconfig","mac","mac-address","node","typed","types","typescript"],"badges":{"list":["githubworkflow","npmversion","npmdownloads","---","githubsponsors","thanksdev","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"githubWorkflow":"bevry","githubSponsorsUsername":"balupton","thanksdevGithubUsername":"balupton","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","githubUsername":"bevry","githubRepository":"getmac","githubSlug":"bevry/getmac","npmPackageName":"getmac"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"Stephen.Brown2+npm@gmail.com"},{"name":"anonymous","email":"b@lupton.cc"},{"name":"anonymous","email":"us@bevry.me"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://github.com/balupton"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/benoitsepe"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"Isaac Huang","url":"https://github.com/caasi"},{"name":"Jan Pilzer","url":"https://github.com/Hirse"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"zboszor","url":"https://github.com/zboszor"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=8"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["source","typescript","import"],"engines":false},{"description":"TypeScript compiled against ES2022 for Node.js 8 || 10 || 12 || 14 || 16 || 18 || 20 || 21 with Require for modules","directory":"edition-es2022","entry":"index.js","tags":["compiled","javascript","es2022","require"],"engines":{"node":"8 || 10 || 12 || 14 || 16 || 18 || 20 || 21","browsers":false}},{"description":"TypeScript compiled against ES2022 for Node.js 12 || 14 || 16 || 18 || 20 || 21 with Import for modules","directory":"edition-es2022-esm","entry":"index.js","tags":["compiled","javascript","es2022","import"],"engines":{"node":"12 || 14 || 16 || 18 || 20 || 21","browsers":false}}],"types":"./compiled-types/","type":"module","main":"edition-es2022/index.js","exports":{"node":{"import":"./edition-es2022-esm/index.js","require":"./edition-es2022/index.js"}},"devDependencies":{"@bevry/update-contributors":"^1.23.0","@types/node":"^20.9.0","@typescript-eslint/eslint-plugin":"^6.10.0","@typescript-eslint/parser":"^6.10.0","assert-helpers":"^11.2.0","eslint":"^8.53.0","eslint-config-bevry":"^3.29.0","eslint-config-prettier":"^9.0.0","eslint-plugin-prettier":"^5.0.1","kava":"^7.1.0","prettier":"^3.1.0","projectz":"^2.23.0","surge":"^0.23.1","typedoc":"^0.25.3","typescript":"5.2.2","valid-directory":"^4.1.0"},"scripts":{"our:clean":"rm -rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:edition-es2022 && npm run our:compile:edition-es2022-esm && npm run our:compile:types","our:compile:edition-es2022":"tsc --module commonjs --target ES2022 --outDir ./edition-es2022 --project tsconfig.json && ( test ! -d edition-es2022/source || ( mv edition-es2022/source edition-temp && rm -rf edition-es2022 && mv edition-temp edition-es2022 ) ) && printf '%s' '{\"type\": \"commonjs\"}' > edition-es2022/package.json","our:compile:edition-es2022-esm":"tsc --module ESNext --target ES2022 --outDir ./edition-es2022-esm --project tsconfig.json && ( test ! -d edition-es2022-esm/source || ( mv edition-es2022-esm/source edition-temp && rm -rf edition-es2022-esm && mv edition-temp edition-es2022-esm ) ) && printf '%s' '{\"type\": \"module\"}' > edition-es2022-esm/package.json","our:compile:types":"tsc --project tsconfig.json --emitDeclarationOnly --declaration --declarationMap --declarationDir ./compiled-types && ( test ! -d compiled-types/source || ( mv compiled-types/source edition-temp && rm -rf compiled-types && mv edition-temp compiled-types ) )","our:deploy":"printf '%s\n' 'no need for this project'","our:meta":"npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz","our:meta:contributors":"update-contributors","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -rf ./docs && typedoc --exclude '**/+(*test*|node_modules)' --excludeExternals --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep \"v$npm_package_version\" || (printf '%s\n' \"add a changelog entry for v$npm_package_version\" && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (printf '%s\n' 'proper changelog entry not found' && exit -1) && git tag \"v$npm_package_version\" -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier","our:verify:directory":"valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write .","test":"node ./edition-es2022/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true,"trailingComma":"es5"},"_id":"getmac@6.0.0-next.1699889210.6e5a311d119f6d56878fb9573bfebc50935e01b8","readmeFilename":"README.md","gitHead":"6e5a311d119f6d56878fb9573bfebc50935e01b8","_nodeVersion":"20.9.0","_npmVersion":"10.1.0","dist":{"integrity":"sha512-DdUGpwLV8iIAuGfNaX8uOyBZ81zPVXUYxGSshuut3Yb5xXdiGBQMZgJxR9qah0Kl8a8XCwD8UffgUkr7PI3tQQ==","shasum":"22f6ab0006ef15e326c159b4a0bf8e96d5775789","tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-6.0.0-next.1699889210.6e5a311d119f6d56878fb9573bfebc50935e01b8.tgz","fileCount":17,"unpackedSize":34901,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC5k4wfdZ1Zm3tD/OCorjwUGVY8tCu1/PBmb1q8dKLrwgIgHJU8UcDSmxBXtcdtJpEtTgnwc28IdKVoEjUNdb/mq0k="}]},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_6.0.0-next.1699889210.6e5a311d119f6d56878fb9573bfebc50935e01b8_1699889212442_0.25612138450880284"},"_hasShrinkwrap":false},"6.1.0-next.1699990142.1bc2bbb964adf32217acc71cd592c433f8554f8d":{"name":"getmac","version":"6.1.0-next.1699990142.1bc2bbb964adf32217acc71cd592c433f8554f8d","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"Artistic-2.0","keywords":["es2022","export-default","getmac","ifconfig","ipconfig","mac","mac-address","node","typed","types","typescript"],"badges":{"list":["githubworkflow","npmversion","npmdownloads","---","githubsponsors","thanksdev","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"githubWorkflow":"bevry","githubSponsorsUsername":"balupton","thanksdevGithubUsername":"balupton","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","githubUsername":"bevry","githubRepository":"getmac","githubSlug":"bevry/getmac","npmPackageName":"getmac"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"us@bevry.me"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://github.com/balupton"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/benoitsepe"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"Isaac Huang","url":"https://github.com/caasi"},{"name":"Jan Pilzer","url":"https://github.com/Hirse"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"zboszor","url":"https://github.com/zboszor"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=8"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["source","typescript","import"],"engines":false},{"description":"TypeScript compiled against ES2022 for Node.js 8 || 10 || 12 || 14 || 16 || 18 || 20 || 21 with Require for modules","directory":"edition-es2022","entry":"index.js","tags":["compiled","javascript","es2022","require"],"engines":{"node":"8 || 10 || 12 || 14 || 16 || 18 || 20 || 21","browsers":false}},{"description":"TypeScript compiled against ES2022 for Node.js 12 || 14 || 16 || 18 || 20 || 21 with Import for modules","directory":"edition-es2022-esm","entry":"index.js","tags":["compiled","javascript","es2022","import"],"engines":{"node":"12 || 14 || 16 || 18 || 20 || 21","browsers":false}}],"types":"./compiled-types/","type":"module","main":"edition-es2022/index.js","exports":{"node":{"import":"./edition-es2022-esm/index.js","require":"./edition-es2022/index.js"}},"devDependencies":{"@bevry/update-contributors":"^1.23.0","@types/node":"^20.9.0","@typescript-eslint/eslint-plugin":"^6.11.0","@typescript-eslint/parser":"^6.11.0","assert-helpers":"^11.4.0","eslint":"^8.53.0","eslint-config-bevry":"^4.0.0","eslint-config-prettier":"^9.0.0","eslint-plugin-prettier":"^5.0.1","kava":"^7.2.0","prettier":"^3.1.0","projectz":"^3.0.0","surge":"^0.23.1","typedoc":"^0.25.3","typescript":"5.2.2","valid-directory":"^4.2.0"},"scripts":{"our:clean":"rm -rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:edition-es2022 && npm run our:compile:edition-es2022-esm && npm run our:compile:types","our:compile:edition-es2022":"tsc --module commonjs --target ES2022 --outDir ./edition-es2022 --project tsconfig.json && ( test ! -d edition-es2022/source || ( mv edition-es2022/source edition-temp && rm -rf edition-es2022 && mv edition-temp edition-es2022 ) ) && printf '%s' '{\"type\": \"commonjs\"}' > edition-es2022/package.json","our:compile:edition-es2022-esm":"tsc --module ESNext --target ES2022 --outDir ./edition-es2022-esm --project tsconfig.json && ( test ! -d edition-es2022-esm/source || ( mv edition-es2022-esm/source edition-temp && rm -rf edition-es2022-esm && mv edition-temp edition-es2022-esm ) ) && printf '%s' '{\"type\": \"module\"}' > edition-es2022-esm/package.json","our:compile:types":"tsc --project tsconfig.json --emitDeclarationOnly --declaration --declarationMap --declarationDir ./compiled-types && ( test ! -d compiled-types/source || ( mv compiled-types/source edition-temp && rm -rf compiled-types && mv edition-temp compiled-types ) )","our:deploy":"printf '%s\n' 'no need for this project'","our:meta":"npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz","our:meta:contributors":"update-contributors","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -rf ./docs && typedoc --exclude '**/+(*test*|node_modules)' --excludeExternals --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep \"v$npm_package_version\" || (printf '%s\n' \"add a changelog entry for v$npm_package_version\" && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (printf '%s\n' 'proper changelog entry not found' && exit -1) && git tag \"v$npm_package_version\" -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier","our:verify:directory":"valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write .","test":"node ./edition-es2022/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true,"trailingComma":"es5"},"_id":"getmac@6.1.0-next.1699990142.1bc2bbb964adf32217acc71cd592c433f8554f8d","readmeFilename":"README.md","gitHead":"1bc2bbb964adf32217acc71cd592c433f8554f8d","_nodeVersion":"20.9.0","_npmVersion":"10.1.0","dist":{"integrity":"sha512-yIpD4hB/pb0BjNF1l5hbuPzhN+6dk3zaXex41yAz2m2ywdD6fSbXFh4EFUHc9EnUbb7eFEFpVfCO2qoH7BPbdA==","shasum":"cefe83aea4e16805cdaba9d4a6458375bf4583dd","tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-6.1.0-next.1699990142.1bc2bbb964adf32217acc71cd592c433f8554f8d.tgz","fileCount":18,"unpackedSize":36590,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCA2U8dxdn//hfyn7/K4VDtajzHab7CtguJRYVvmnlDLAIgGTTevzIY5xE7DAVyu9y/AbhS/bni2MsPWbXjym7N+6o="}]},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_6.1.0-next.1699990142.1bc2bbb964adf32217acc71cd592c433f8554f8d_1699990143545_0.025141912465734606"},"_hasShrinkwrap":false},"6.1.0":{"name":"getmac","version":"6.1.0","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"Artistic-2.0","keywords":["es2022","export-default","getmac","ifconfig","ipconfig","mac","mac-address","node","typed","types","typescript"],"badges":{"list":["githubworkflow","npmversion","npmdownloads","---","githubsponsors","thanksdev","patreon","flattr","liberapay","buymeacoffee","opencollective","crypto","paypal","wishlist"],"config":{"githubWorkflow":"bevry","githubSponsorsUsername":"balupton","thanksdevGithubUsername":"balupton","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","githubUsername":"bevry","githubRepository":"getmac","githubSlug":"bevry/getmac","npmPackageName":"getmac"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"us@bevry.me"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://github.com/balupton"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/benoitsepe"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"Isaac Huang","url":"https://github.com/caasi"},{"name":"Jan Pilzer","url":"https://github.com/Hirse"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"zboszor","url":"https://github.com/zboszor"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=8"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["source","typescript","import"],"engines":false},{"description":"TypeScript compiled against ES2022 for Node.js 8 || 10 || 12 || 14 || 16 || 18 || 20 || 21 with Require for modules","directory":"edition-es2022","entry":"index.js","tags":["compiled","javascript","es2022","require"],"engines":{"node":"8 || 10 || 12 || 14 || 16 || 18 || 20 || 21","browsers":false}},{"description":"TypeScript compiled against ES2022 for Node.js 12 || 14 || 16 || 18 || 20 || 21 with Import for modules","directory":"edition-es2022-esm","entry":"index.js","tags":["compiled","javascript","es2022","import"],"engines":{"node":"12 || 14 || 16 || 18 || 20 || 21","browsers":false}}],"types":"./compiled-types/","type":"module","main":"edition-es2022/index.js","exports":{"node":{"import":"./edition-es2022-esm/index.js","require":"./edition-es2022/index.js"}},"devDependencies":{"@bevry/update-contributors":"^1.23.0","@types/node":"^20.9.0","@typescript-eslint/eslint-plugin":"^6.11.0","@typescript-eslint/parser":"^6.11.0","assert-helpers":"^11.4.0","eslint":"^8.53.0","eslint-config-bevry":"^4.0.0","eslint-config-prettier":"^9.0.0","eslint-plugin-prettier":"^5.0.1","kava":"^7.2.0","prettier":"^3.1.0","projectz":"^3.0.0","surge":"^0.23.1","typedoc":"^0.25.3","typescript":"5.2.2","valid-directory":"^4.2.0"},"scripts":{"our:clean":"rm -rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:edition-es2022 && npm run our:compile:edition-es2022-esm && npm run our:compile:types","our:compile:edition-es2022":"tsc --module commonjs --target ES2022 --outDir ./edition-es2022 --project tsconfig.json && ( test ! -d edition-es2022/source || ( mv edition-es2022/source edition-temp && rm -rf edition-es2022 && mv edition-temp edition-es2022 ) ) && printf '%s' '{\"type\": \"commonjs\"}' > edition-es2022/package.json","our:compile:edition-es2022-esm":"tsc --module ESNext --target ES2022 --outDir ./edition-es2022-esm --project tsconfig.json && ( test ! -d edition-es2022-esm/source || ( mv edition-es2022-esm/source edition-temp && rm -rf edition-es2022-esm && mv edition-temp edition-es2022-esm ) ) && printf '%s' '{\"type\": \"module\"}' > edition-es2022-esm/package.json","our:compile:types":"tsc --project tsconfig.json --emitDeclarationOnly --declaration --declarationMap --declarationDir ./compiled-types && ( test ! -d compiled-types/source || ( mv compiled-types/source edition-temp && rm -rf compiled-types && mv edition-temp compiled-types ) )","our:deploy":"printf '%s\n' 'no need for this project'","our:meta":"npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz","our:meta:contributors":"update-contributors","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -rf ./docs && typedoc --exclude '**/+(*test*|node_modules)' --excludeExternals --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep \"v$npm_package_version\" || (printf '%s\n' \"add a changelog entry for v$npm_package_version\" && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (printf '%s\n' 'proper changelog entry not found' && exit -1) && git tag \"v$npm_package_version\" -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier","our:verify:directory":"valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write .","test":"node ./edition-es2022/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true,"trailingComma":"es5"},"_id":"getmac@6.1.0","gitHead":"1bc2bbb964adf32217acc71cd592c433f8554f8d","_nodeVersion":"20.9.0","_npmVersion":"10.1.0","dist":{"integrity":"sha512-j01Ji6/KKzLRXVMV6h9UWUE5327Nxp078nOPcxby5v3Kms5NgAXXO0uxVLTHDG/sOegZMnv0wNG/gd0Ptdm47A==","shasum":"178338544dead0478027a40c84d20648db65fc97","tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-6.1.0.tgz","fileCount":18,"unpackedSize":36532,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDAp/jvr85GDhuawlrQEmjiC69rjAQwDrzlCxXtyexGAAiB1yXUo3I4KmNGUvJmCSstCdb3OPxeNgm+FHq2Nte/E+A=="}]},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_6.1.0_1699990147518_0.2878891870050724"},"_hasShrinkwrap":false},"6.2.0":{"name":"getmac","version":"6.2.0","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"Artistic-2.0","keywords":["es2022","export-default","getmac","ifconfig","ipconfig","mac","mac-address","node","typed","types","typescript"],"badges":{"list":["githubworkflow","npmversion","npmdownloads","---","githubsponsors","thanksdev","patreon","liberapay","buymeacoffee","opencollective","crypto","paypal","---","discord","twitch"],"config":{"githubWorkflow":"bevry","githubSponsorsUsername":"balupton","thanksdevGithubUsername":"bevry","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","discordServerID":"1147436445783560193","discordServerInvite":"nQuXddV7VP","twitchUsername":"balupton","githubUsername":"bevry","githubRepository":"getmac","githubSlug":"bevry/getmac","npmPackageName":"getmac"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"us@bevry.me"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://github.com/balupton"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/benoitsepe"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"Isaac Huang","url":"https://github.com/caasi"},{"name":"Jan Pilzer","url":"https://github.com/Hirse"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"zboszor","url":"https://github.com/zboszor"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=8"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["source","typescript","import"],"engines":false},{"description":"TypeScript compiled against ES2022 for Node.js 8 || 10 || 12 || 14 || 16 || 18 || 20 || 21 with Require for modules","directory":"edition-es2022","entry":"index.js","tags":["compiled","javascript","es2022","require"],"engines":{"node":"8 || 10 || 12 || 14 || 16 || 18 || 20 || 21","browsers":false}},{"description":"TypeScript compiled against ES2022 for Node.js 12 || 14 || 16 || 18 || 20 || 21 with Import for modules","directory":"edition-es2022-esm","entry":"index.js","tags":["compiled","javascript","es2022","import"],"engines":{"node":"12 || 14 || 16 || 18 || 20 || 21","browsers":false}},{"description":"TypeScript compiled Types with Import for modules","directory":"edition-types","entry":"index.d.ts","tags":["compiled","types","import"],"engines":false}],"types":"edition-types/index.d.ts","type":"module","main":"edition-es2022/index.js","exports":{"node":{"types":"./edition-types/index.d.ts","import":"./edition-es2022-esm/index.js","require":"./edition-es2022/index.js"}},"devDependencies":{"@bevry/update-contributors":"^1.23.0","@types/node":"^20.9.3","@typescript-eslint/eslint-plugin":"^6.12.0","@typescript-eslint/parser":"^6.12.0","assert-helpers":"^11.5.0","eslint":"^8.54.0","eslint-config-bevry":"^5.0.0","eslint-config-prettier":"^9.0.0","eslint-plugin-prettier":"^5.0.1","kava":"^7.3.0","prettier":"^3.1.0","projectz":"^3.2.0","surge":"^0.23.1","typedoc":"^0.25.3","typescript":"5.2.2","valid-directory":"^4.4.0"},"scripts":{"our:clean":"rm -rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:edition-es2022 && npm run our:compile:edition-es2022-esm && npm run our:compile:edition-types","our:compile:edition-es2022":"tsc --module commonjs --target ES2022 --outDir ./edition-es2022 --project tsconfig.json && ( test ! -d edition-es2022/source || ( mv edition-es2022/source edition-temp && rm -rf edition-es2022 && mv edition-temp edition-es2022 ) ) && printf '%s' '{\"type\": \"commonjs\"}' > edition-es2022/package.json","our:compile:edition-es2022-esm":"tsc --module ESNext --target ES2022 --outDir ./edition-es2022-esm --project tsconfig.json && ( test ! -d edition-es2022-esm/source || ( mv edition-es2022-esm/source edition-temp && rm -rf edition-es2022-esm && mv edition-temp edition-es2022-esm ) ) && printf '%s' '{\"type\": \"module\"}' > edition-es2022-esm/package.json","our:compile:edition-types":"tsc --emitDeclarationOnly --declaration --declarationMap --declarationDir ./edition-types --project tsconfig.json && ( test ! -d edition-types/source || ( mv edition-types/source edition-temp && rm -rf edition-types && mv edition-temp edition-types ) )","our:deploy":"printf '%s\n' 'no need for this project'","our:meta":"npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz","our:meta:contributors":"update-contributors","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -rf ./docs && typedoc --exclude '**/+(*test*|node_modules)' --excludeExternals --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep \"v$npm_package_version\" || (printf '%s\n' \"add a changelog entry for v$npm_package_version\" && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (printf '%s\n' 'proper changelog entry not found' && exit -1) && git tag \"v$npm_package_version\" -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier","our:verify:directory":"valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write .","test":"node ./edition-es2022/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true,"trailingComma":"es5"},"_id":"getmac@6.2.0","gitHead":"7e34b1ad039b830424cadde3ab089f71dd5e6411","_nodeVersion":"20.9.0","_npmVersion":"10.1.0","dist":{"integrity":"sha512-wDSCdrbfxsvDLVFZEu2uDDWiHuO8/qqVvOAsdVnumaarLfecN40pH1YongnxJ8BvxmDajCi6o36mMewWbOcRAg==","shasum":"d72d295e23fff8e2a81659c62c6bb21cc0098ab9","tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-6.2.0.tgz","fileCount":18,"unpackedSize":36961,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIB7L71qxicelMWGI/DLBx0nsb4+88PuB2rmbs14nGOX/AiA1ukSMcVsYYsg9RkMPV49BpZYhR4QcPPFLOsY6pUJ1/w=="}]},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_6.2.0_1700555304553_0.8393457095810581"},"_hasShrinkwrap":false},"6.2.0-next.1700555310.7e34b1ad039b830424cadde3ab089f71dd5e6411":{"name":"getmac","version":"6.2.0-next.1700555310.7e34b1ad039b830424cadde3ab089f71dd5e6411","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"Artistic-2.0","keywords":["es2022","export-default","getmac","ifconfig","ipconfig","mac","mac-address","node","typed","types","typescript"],"badges":{"list":["githubworkflow","npmversion","npmdownloads","---","githubsponsors","thanksdev","patreon","liberapay","buymeacoffee","opencollective","crypto","paypal","---","discord","twitch"],"config":{"githubWorkflow":"bevry","githubSponsorsUsername":"balupton","thanksdevGithubUsername":"bevry","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","discordServerID":"1147436445783560193","discordServerInvite":"nQuXddV7VP","twitchUsername":"balupton","githubUsername":"bevry","githubRepository":"getmac","githubSlug":"bevry/getmac","npmPackageName":"getmac"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"us@bevry.me"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://github.com/balupton"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/benoitsepe"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"Isaac Huang","url":"https://github.com/caasi"},{"name":"Jan Pilzer","url":"https://github.com/Hirse"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"zboszor","url":"https://github.com/zboszor"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=8"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["source","typescript","import"],"engines":false},{"description":"TypeScript compiled against ES2022 for Node.js 8 || 10 || 12 || 14 || 16 || 18 || 20 || 21 with Require for modules","directory":"edition-es2022","entry":"index.js","tags":["compiled","javascript","es2022","require"],"engines":{"node":"8 || 10 || 12 || 14 || 16 || 18 || 20 || 21","browsers":false}},{"description":"TypeScript compiled against ES2022 for Node.js 12 || 14 || 16 || 18 || 20 || 21 with Import for modules","directory":"edition-es2022-esm","entry":"index.js","tags":["compiled","javascript","es2022","import"],"engines":{"node":"12 || 14 || 16 || 18 || 20 || 21","browsers":false}},{"description":"TypeScript compiled Types with Import for modules","directory":"edition-types","entry":"index.d.ts","tags":["compiled","types","import"],"engines":false}],"types":"edition-types/index.d.ts","type":"module","main":"edition-es2022/index.js","exports":{"node":{"types":"./edition-types/index.d.ts","import":"./edition-es2022-esm/index.js","require":"./edition-es2022/index.js"}},"devDependencies":{"@bevry/update-contributors":"^1.23.0","@types/node":"^20.9.3","@typescript-eslint/eslint-plugin":"^6.12.0","@typescript-eslint/parser":"^6.12.0","assert-helpers":"^11.5.0","eslint":"^8.54.0","eslint-config-bevry":"^5.0.0","eslint-config-prettier":"^9.0.0","eslint-plugin-prettier":"^5.0.1","kava":"^7.3.0","prettier":"^3.1.0","projectz":"^3.2.0","surge":"^0.23.1","typedoc":"^0.25.3","typescript":"5.2.2","valid-directory":"^4.4.0"},"scripts":{"our:clean":"rm -rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:edition-es2022 && npm run our:compile:edition-es2022-esm && npm run our:compile:edition-types","our:compile:edition-es2022":"tsc --module commonjs --target ES2022 --outDir ./edition-es2022 --project tsconfig.json && ( test ! -d edition-es2022/source || ( mv edition-es2022/source edition-temp && rm -rf edition-es2022 && mv edition-temp edition-es2022 ) ) && printf '%s' '{\"type\": \"commonjs\"}' > edition-es2022/package.json","our:compile:edition-es2022-esm":"tsc --module ESNext --target ES2022 --outDir ./edition-es2022-esm --project tsconfig.json && ( test ! -d edition-es2022-esm/source || ( mv edition-es2022-esm/source edition-temp && rm -rf edition-es2022-esm && mv edition-temp edition-es2022-esm ) ) && printf '%s' '{\"type\": \"module\"}' > edition-es2022-esm/package.json","our:compile:edition-types":"tsc --emitDeclarationOnly --declaration --declarationMap --declarationDir ./edition-types --project tsconfig.json && ( test ! -d edition-types/source || ( mv edition-types/source edition-temp && rm -rf edition-types && mv edition-temp edition-types ) )","our:deploy":"printf '%s\n' 'no need for this project'","our:meta":"npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz","our:meta:contributors":"update-contributors","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -rf ./docs && typedoc --exclude '**/+(*test*|node_modules)' --excludeExternals --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep \"v$npm_package_version\" || (printf '%s\n' \"add a changelog entry for v$npm_package_version\" && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (printf '%s\n' 'proper changelog entry not found' && exit -1) && git tag \"v$npm_package_version\" -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier","our:verify:directory":"valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write .","test":"node ./edition-es2022/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true,"trailingComma":"es5"},"_id":"getmac@6.2.0-next.1700555310.7e34b1ad039b830424cadde3ab089f71dd5e6411","readmeFilename":"README.md","gitHead":"7e34b1ad039b830424cadde3ab089f71dd5e6411","_nodeVersion":"20.9.0","_npmVersion":"10.1.0","dist":{"integrity":"sha512-B/p/wyZMbjz/T1SkQ0D/hS9+I32r4GJN1Nx1McF+fxI3HWGDa+pNulMfaWGUSZ0V159fC51Xxp+wk3Bq7BJgFQ==","shasum":"d8bec1c4b219b203e8d9f52880a419cc1e342374","tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-6.2.0-next.1700555310.7e34b1ad039b830424cadde3ab089f71dd5e6411.tgz","fileCount":18,"unpackedSize":37019,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEpK6zI7p1YRzCFUuPMmr80R/oBh/gWqeSrhfKeazC9uAiAYJuCvUJBK3lOCw42llxqBOlwrZwFsaddRZLlbmK6JtA=="}]},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_6.2.0-next.1700555310.7e34b1ad039b830424cadde3ab089f71dd5e6411_1700555312131_0.6731568623055391"},"_hasShrinkwrap":false},"6.3.0":{"name":"getmac","version":"6.3.0","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"Artistic-2.0","keywords":["deno","deno-edition","deno-entry","denoland","es2022","export-default","getmac","ifconfig","ipconfig","mac","mac-address","node","typed","types","typescript"],"badges":{"list":["githubworkflow","npmversion","npmdownloads","---","githubsponsors","thanksdev","patreon","liberapay","buymeacoffee","opencollective","crypto","paypal","---","discord","twitch"],"config":{"githubWorkflow":"bevry","githubSponsorsUsername":"balupton","thanksdevGithubUsername":"bevry","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","discordServerID":"1147436445783560193","discordServerInvite":"nQuXddV7VP","twitchUsername":"balupton","githubUsername":"bevry","githubRepository":"getmac","githubSlug":"bevry/getmac","npmPackageName":"getmac"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"us@bevry.me"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://github.com/balupton"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/benoitsepe"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"Isaac Huang","url":"https://github.com/caasi"},{"name":"Jan Pilzer","url":"https://github.com/Hirse"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"zboszor","url":"https://github.com/zboszor"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=8"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["source","typescript","import"],"engines":false},{"description":"TypeScript compiled against ES2022 for Node.js 8 || 10 || 12 || 14 || 16 || 18 || 20 || 21 with Require for modules","directory":"edition-es2022","entry":"index.js","tags":["compiled","javascript","es2022","require"],"engines":{"node":"8 || 10 || 12 || 14 || 16 || 18 || 20 || 21","browsers":false}},{"description":"TypeScript compiled against ES2022 for Node.js 12 || 14 || 16 || 18 || 20 || 21 with Import for modules","directory":"edition-es2022-esm","entry":"index.js","tags":["compiled","javascript","es2022","import"],"engines":{"node":"12 || 14 || 16 || 18 || 20 || 21","browsers":false}},{"description":"TypeScript compiled Types with Import for modules","directory":"edition-types","entry":"index.d.ts","tags":["compiled","types","import"],"engines":false},{"description":"TypeScript source code made to be compatible with Deno","directory":"edition-deno","entry":"index.ts","tags":["typescript","import","deno"],"engines":{"deno":true,"browsers":false}}],"types":"edition-types/index.d.ts","type":"module","main":"edition-es2022/index.js","exports":{"node":{"types":"./edition-types/index.d.ts","import":"./edition-es2022-esm/index.js","require":"./edition-es2022/index.js"}},"deno":"edition-deno/index.ts","devDependencies":{"@bevry/update-contributors":"^1.23.0","@types/node":"^20.10.0","@typescript-eslint/eslint-plugin":"^6.12.0","@typescript-eslint/parser":"^6.12.0","assert-helpers":"^11.6.0","eslint":"^8.54.0","eslint-config-bevry":"^5.2.0","eslint-config-prettier":"^9.0.0","eslint-plugin-prettier":"^5.0.1","kava":"^7.3.0","make-deno-edition":"^2.0.0","prettier":"^3.1.0","projectz":"^3.3.0","surge":"^0.23.1","typedoc":"^0.25.3","typescript":"5.2.2","valid-directory":"^4.5.0"},"scripts":{"our:clean":"rm -rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:deno && npm run our:compile:edition-es2022 && npm run our:compile:edition-es2022-esm && npm run our:compile:edition-types","our:compile:deno":"make-deno-edition --attempt","our:compile:edition-es2022":"tsc --module commonjs --target ES2022 --outDir ./edition-es2022 --project tsconfig.json && ( test ! -d edition-es2022/source || ( mv edition-es2022/source edition-temp && rm -rf edition-es2022 && mv edition-temp edition-es2022 ) ) && printf '%s' '{\"type\": \"commonjs\"}' > edition-es2022/package.json","our:compile:edition-es2022-esm":"tsc --module ESNext --target ES2022 --outDir ./edition-es2022-esm --project tsconfig.json && ( test ! -d edition-es2022-esm/source || ( mv edition-es2022-esm/source edition-temp && rm -rf edition-es2022-esm && mv edition-temp edition-es2022-esm ) ) && printf '%s' '{\"type\": \"module\"}' > edition-es2022-esm/package.json","our:compile:edition-types":"tsc --emitDeclarationOnly --declaration --declarationMap --declarationDir ./edition-types --project tsconfig.json && ( test ! -d edition-types/source || ( mv edition-types/source edition-temp && rm -rf edition-types && mv edition-temp edition-types ) )","our:deploy":"printf '%s\n' 'no need for this project'","our:meta":"npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz","our:meta:contributors":"update-contributors","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -rf ./docs && typedoc --exclude '**/+(*test*|node_modules)' --excludeExternals --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep \"v$npm_package_version\" || (printf '%s\n' \"add a changelog entry for v$npm_package_version\" && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (printf '%s\n' 'proper changelog entry not found' && exit -1) && git tag \"v$npm_package_version\" -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier","our:verify:directory":"valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write .","test":"node ./edition-es2022/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true,"trailingComma":"es5"},"_id":"getmac@6.3.0","gitHead":"f92b22740ef110fafffb2cf1384add366c351931","_nodeVersion":"20.9.0","_npmVersion":"10.1.0","dist":{"integrity":"sha512-O1IP4DvG0DVDviQRWqxGXNMBqnWDTHOU0W+A2nkBczlzmF9+BtBf5FpgD9ht5vUTp1FSUrlvfouYQk9yE3l+JA==","shasum":"ab170c2d6e6bd472e81fabf0fa62854bc89fe5cc","tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-6.3.0.tgz","fileCount":20,"unpackedSize":39473,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEgyWsfvgTcSVVQk4ZSXNwJpZ9s55H6W7fJC3svm1IrLAiEAgD11L4riqRZOAoixMtIP1955pzC3wIp0ence7/lpqFg="}]},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_6.3.0_1700847510093_0.10063868275239951"},"_hasShrinkwrap":false},"6.3.0-next.1700847531.f92b22740ef110fafffb2cf1384add366c351931":{"name":"getmac","version":"6.3.0-next.1700847531.f92b22740ef110fafffb2cf1384add366c351931","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"Artistic-2.0","keywords":["deno","deno-edition","deno-entry","denoland","es2022","export-default","getmac","ifconfig","ipconfig","mac","mac-address","node","typed","types","typescript"],"badges":{"list":["githubworkflow","npmversion","npmdownloads","---","githubsponsors","thanksdev","patreon","liberapay","buymeacoffee","opencollective","crypto","paypal","---","discord","twitch"],"config":{"githubWorkflow":"bevry","githubSponsorsUsername":"balupton","thanksdevGithubUsername":"bevry","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","discordServerID":"1147436445783560193","discordServerInvite":"nQuXddV7VP","twitchUsername":"balupton","githubUsername":"bevry","githubRepository":"getmac","githubSlug":"bevry/getmac","npmPackageName":"getmac"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"us@bevry.me"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://github.com/balupton"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/benoitsepe"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"Isaac Huang","url":"https://github.com/caasi"},{"name":"Jan Pilzer","url":"https://github.com/Hirse"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"zboszor","url":"https://github.com/zboszor"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=8"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["source","typescript","import"],"engines":false},{"description":"TypeScript compiled against ES2022 for Node.js 8 || 10 || 12 || 14 || 16 || 18 || 20 || 21 with Require for modules","directory":"edition-es2022","entry":"index.js","tags":["compiled","javascript","es2022","require"],"engines":{"node":"8 || 10 || 12 || 14 || 16 || 18 || 20 || 21","browsers":false}},{"description":"TypeScript compiled against ES2022 for Node.js 12 || 14 || 16 || 18 || 20 || 21 with Import for modules","directory":"edition-es2022-esm","entry":"index.js","tags":["compiled","javascript","es2022","import"],"engines":{"node":"12 || 14 || 16 || 18 || 20 || 21","browsers":false}},{"description":"TypeScript compiled Types with Import for modules","directory":"edition-types","entry":"index.d.ts","tags":["compiled","types","import"],"engines":false},{"description":"TypeScript source code made to be compatible with Deno","directory":"edition-deno","entry":"index.ts","tags":["typescript","import","deno"],"engines":{"deno":true,"browsers":false}}],"types":"edition-types/index.d.ts","type":"module","main":"edition-es2022/index.js","exports":{"node":{"types":"./edition-types/index.d.ts","import":"./edition-es2022-esm/index.js","require":"./edition-es2022/index.js"}},"deno":"edition-deno/index.ts","devDependencies":{"@bevry/update-contributors":"^1.23.0","@types/node":"^20.10.0","@typescript-eslint/eslint-plugin":"^6.12.0","@typescript-eslint/parser":"^6.12.0","assert-helpers":"^11.6.0","eslint":"^8.54.0","eslint-config-bevry":"^5.2.0","eslint-config-prettier":"^9.0.0","eslint-plugin-prettier":"^5.0.1","kava":"^7.3.0","make-deno-edition":"^2.0.0","prettier":"^3.1.0","projectz":"^3.3.0","surge":"^0.23.1","typedoc":"^0.25.3","typescript":"5.2.2","valid-directory":"^4.5.0"},"scripts":{"our:clean":"rm -rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:deno && npm run our:compile:edition-es2022 && npm run our:compile:edition-es2022-esm && npm run our:compile:edition-types","our:compile:deno":"make-deno-edition --attempt","our:compile:edition-es2022":"tsc --module commonjs --target ES2022 --outDir ./edition-es2022 --project tsconfig.json && ( test ! -d edition-es2022/source || ( mv edition-es2022/source edition-temp && rm -rf edition-es2022 && mv edition-temp edition-es2022 ) ) && printf '%s' '{\"type\": \"commonjs\"}' > edition-es2022/package.json","our:compile:edition-es2022-esm":"tsc --module ESNext --target ES2022 --outDir ./edition-es2022-esm --project tsconfig.json && ( test ! -d edition-es2022-esm/source || ( mv edition-es2022-esm/source edition-temp && rm -rf edition-es2022-esm && mv edition-temp edition-es2022-esm ) ) && printf '%s' '{\"type\": \"module\"}' > edition-es2022-esm/package.json","our:compile:edition-types":"tsc --emitDeclarationOnly --declaration --declarationMap --declarationDir ./edition-types --project tsconfig.json && ( test ! -d edition-types/source || ( mv edition-types/source edition-temp && rm -rf edition-types && mv edition-temp edition-types ) )","our:deploy":"printf '%s\n' 'no need for this project'","our:meta":"npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz","our:meta:contributors":"update-contributors","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -rf ./docs && typedoc --exclude '**/+(*test*|node_modules)' --excludeExternals --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep \"v$npm_package_version\" || (printf '%s\n' \"add a changelog entry for v$npm_package_version\" && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (printf '%s\n' 'proper changelog entry not found' && exit -1) && git tag \"v$npm_package_version\" -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier","our:verify:directory":"valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write .","test":"node ./edition-es2022/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true,"trailingComma":"es5"},"_id":"getmac@6.3.0-next.1700847531.f92b22740ef110fafffb2cf1384add366c351931","readmeFilename":"README.md","gitHead":"f92b22740ef110fafffb2cf1384add366c351931","_nodeVersion":"20.9.0","_npmVersion":"10.1.0","dist":{"integrity":"sha512-f1cPQ2/8f/5vGMXUz0BMH3pgwcLNlhg3xapt5jOhJBIzya5gBgAf0WbtReFpUclVV7za8HaOeU4GZ7Yd/A5i5w==","shasum":"2cbe85e12dda8cb96c2acc555e0c331d1d0f4db2","tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-6.3.0-next.1700847531.f92b22740ef110fafffb2cf1384add366c351931.tgz","fileCount":20,"unpackedSize":39531,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICruOlsQX5cF8OKta60+giKWA92dBud1h883YIXiT4V3AiAZd+mupFvRlZHqM4WluwOvMDXaJq94Z/yIOrnWLW432w=="}]},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_6.3.0-next.1700847531.f92b22740ef110fafffb2cf1384add366c351931_1700847533188_0.6578153367314332"},"_hasShrinkwrap":false},"6.4.0-next.1701805817.c6bf74d088692028c6a77ac7ccc85b7f36415187":{"name":"getmac","version":"6.4.0-next.1701805817.c6bf74d088692028c6a77ac7ccc85b7f36415187","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"Artistic-2.0","keywords":["deno","deno-edition","deno-entry","denoland","es2022","export-default","getmac","ifconfig","ipconfig","mac","mac-address","node","typed","types","typescript"],"badges":{"list":["githubworkflow","npmversion","npmdownloads","---","githubsponsors","thanksdev","patreon","liberapay","buymeacoffee","opencollective","crypto","paypal","---","discord","twitch"],"config":{"githubWorkflow":"bevry","githubSponsorsUsername":"balupton","thanksdevGithubUsername":"bevry","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","discordServerID":"1147436445783560193","discordServerInvite":"nQuXddV7VP","twitchUsername":"balupton","githubUsername":"bevry","githubRepository":"getmac","githubSlug":"bevry/getmac","npmPackageName":"getmac"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"us@bevry.me"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://github.com/balupton"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/benoitsepe"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"Isaac Huang","url":"https://github.com/caasi"},{"name":"Jan Pilzer","url":"https://github.com/Hirse"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"zboszor","url":"https://github.com/zboszor"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=8"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["source","typescript","import"],"engines":false},{"description":"TypeScript compiled against ES2022 for Node.js 21 with Require for modules","directory":"edition-es2022","entry":"index.js","tags":["compiled","javascript","es2022","require"],"engines":{"node":"8 || 10 || 12 || 14 || 16 || 18 || 20 || 21","browsers":false}},{"description":"TypeScript compiled against ES2022 for Node.js 21 with Import for modules","directory":"edition-es2022-esm","entry":"index.js","tags":["compiled","javascript","es2022","import"],"engines":{"node":"12 || 14 || 16 || 18 || 20 || 21","browsers":false}},{"description":"TypeScript compiled Types with Import for modules","directory":"edition-types","entry":"index.d.ts","tags":["compiled","types","import"],"engines":false},{"description":"TypeScript source code made to be compatible with Deno","directory":"edition-deno","entry":"index.ts","tags":["typescript","import","deno"],"engines":{"deno":true,"browsers":false}}],"types":"edition-types/index.d.ts","type":"module","main":"edition-es2022/index.js","exports":{"node":{"types":"./edition-types/index.d.ts","import":"./edition-es2022-esm/index.js","require":"./edition-es2022/index.js"}},"deno":"edition-deno/index.ts","devDependencies":{"@bevry/update-contributors":"^1.23.0","@types/node":"^20.10.3","@typescript-eslint/eslint-plugin":"^6.13.2","@typescript-eslint/parser":"^6.13.2","assert-helpers":"^11.9.0","eslint":"^8.55.0","eslint-config-bevry":"^5.2.0","eslint-config-prettier":"^9.1.0","eslint-plugin-prettier":"^5.0.1","kava":"^7.5.0","make-deno-edition":"^2.0.1","prettier":"^3.1.0","projectz":"^3.4.0","typedoc":"^0.25.4","typescript":"5.3.2","valid-directory":"^4.6.0"},"scripts":{"our:clean":"rm -rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:deno && npm run our:compile:edition-es2022 && npm run our:compile:edition-es2022-esm && npm run our:compile:edition-types","our:compile:deno":"make-deno-edition --attempt","our:compile:edition-es2022":"tsc --module commonjs --target ES2022 --outDir ./edition-es2022 --project tsconfig.json && ( test ! -d edition-es2022/source || ( mv edition-es2022/source edition-temp && rm -rf edition-es2022 && mv edition-temp edition-es2022 ) ) && printf '%s' '{\"type\": \"commonjs\"}' > edition-es2022/package.json","our:compile:edition-es2022-esm":"tsc --module ESNext --target ES2022 --outDir ./edition-es2022-esm --project tsconfig.json && ( test ! -d edition-es2022-esm/source || ( mv edition-es2022-esm/source edition-temp && rm -rf edition-es2022-esm && mv edition-temp edition-es2022-esm ) ) && printf '%s' '{\"type\": \"module\"}' > edition-es2022-esm/package.json","our:compile:edition-types":"tsc --emitDeclarationOnly --declaration --declarationMap --declarationDir ./edition-types --project tsconfig.json && ( test ! -d edition-types/source || ( mv edition-types/source edition-temp && rm -rf edition-types && mv edition-temp edition-types ) )","our:deploy":"printf '%s\n' 'no need for this project'","our:meta":"npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz","our:meta:contributors":"update-contributors","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -rf ./docs && typedoc --exclude '**/+(*test*|node_modules)' --excludeExternals --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep \"v$npm_package_version\" || (printf '%s\n' \"add a changelog entry for v$npm_package_version\" && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (printf '%s\n' 'proper changelog entry not found' && exit -1) && git tag \"v$npm_package_version\" -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier","our:verify:directory":"valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write .","test":"node ./edition-es2022/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true,"trailingComma":"all","endOfLine":"lf"},"_id":"getmac@6.4.0-next.1701805817.c6bf74d088692028c6a77ac7ccc85b7f36415187","readmeFilename":"README.md","gitHead":"c6bf74d088692028c6a77ac7ccc85b7f36415187","_nodeVersion":"20.10.0","_npmVersion":"10.2.3","dist":{"integrity":"sha512-gdQyn1dA72HrXOFtlIxO8di/tfeTTwwujGiPVpZlJbc2k9hDCUsSrxT+xeBQN+JgNW8c5T33UW5jjaGFgYOMNA==","shasum":"4461cc116309559eca82ab6054d9575625af0ca2","tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-6.4.0-next.1701805817.c6bf74d088692028c6a77ac7ccc85b7f36415187.tgz","fileCount":20,"unpackedSize":39356,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICTDoq/IAkHys5K5fUmjPOkUP/dT7ErTq3n6J26UQZipAiAxXy28Tax6K5WCRpF6dH+2F3jayp1xAkkbCGRr64L/Dg=="}]},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_6.4.0-next.1701805817.c6bf74d088692028c6a77ac7ccc85b7f36415187_1701805818947_0.34291093962366737"},"_hasShrinkwrap":false},"6.4.0":{"name":"getmac","version":"6.4.0","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","license":"Artistic-2.0","keywords":["deno","deno-edition","deno-entry","denoland","es2022","export-default","getmac","ifconfig","ipconfig","mac","mac-address","node","typed","types","typescript"],"badges":{"list":["githubworkflow","npmversion","npmdownloads","---","githubsponsors","thanksdev","patreon","liberapay","buymeacoffee","opencollective","crypto","paypal","---","discord","twitch"],"config":{"githubWorkflow":"bevry","githubSponsorsUsername":"balupton","thanksdevGithubUsername":"bevry","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","discordServerID":"1147436445783560193","discordServerInvite":"nQuXddV7VP","twitchUsername":"balupton","githubUsername":"bevry","githubRepository":"getmac","githubSlug":"bevry/getmac","npmPackageName":"getmac"}},"funding":"https://bevry.me/fund","author":{"name":"2013+ Bevry Pty Ltd","email":"us@bevry.me","url":"http://bevry.me"},"maintainers":[{"name":"anonymous","email":"us@bevry.me"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://github.com/balupton"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/benoitsepe"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://github.com/guhcostan"},{"name":"Isaac Huang","url":"https://github.com/caasi"},{"name":"Jan Pilzer","url":"https://github.com/Hirse"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"zboszor","url":"https://github.com/zboszor"}],"bugs":{"url":"https://github.com/bevry/getmac/issues"},"repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"engines":{"node":">=8"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["source","typescript","import"],"engines":false},{"description":"TypeScript compiled against ES2022 for Node.js 21 with Require for modules","directory":"edition-es2022","entry":"index.js","tags":["compiled","javascript","es2022","require"],"engines":{"node":"8 || 10 || 12 || 14 || 16 || 18 || 20 || 21","browsers":false}},{"description":"TypeScript compiled against ES2022 for Node.js 21 with Import for modules","directory":"edition-es2022-esm","entry":"index.js","tags":["compiled","javascript","es2022","import"],"engines":{"node":"12 || 14 || 16 || 18 || 20 || 21","browsers":false}},{"description":"TypeScript compiled Types with Import for modules","directory":"edition-types","entry":"index.d.ts","tags":["compiled","types","import"],"engines":false},{"description":"TypeScript source code made to be compatible with Deno","directory":"edition-deno","entry":"index.ts","tags":["typescript","import","deno"],"engines":{"deno":true,"browsers":false}}],"types":"edition-types/index.d.ts","type":"module","main":"edition-es2022/index.js","exports":{"node":{"types":"./edition-types/index.d.ts","import":"./edition-es2022-esm/index.js","require":"./edition-es2022/index.js"}},"deno":"edition-deno/index.ts","devDependencies":{"@bevry/update-contributors":"^1.23.0","@types/node":"^20.10.3","@typescript-eslint/eslint-plugin":"^6.13.2","@typescript-eslint/parser":"^6.13.2","assert-helpers":"^11.9.0","eslint":"^8.55.0","eslint-config-bevry":"^5.2.0","eslint-config-prettier":"^9.1.0","eslint-plugin-prettier":"^5.0.1","kava":"^7.5.0","make-deno-edition":"^2.0.1","prettier":"^3.1.0","projectz":"^3.4.0","typedoc":"^0.25.4","typescript":"5.3.2","valid-directory":"^4.6.0"},"scripts":{"our:clean":"rm -rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:deno && npm run our:compile:edition-es2022 && npm run our:compile:edition-es2022-esm && npm run our:compile:edition-types","our:compile:deno":"make-deno-edition --attempt","our:compile:edition-es2022":"tsc --module commonjs --target ES2022 --outDir ./edition-es2022 --project tsconfig.json && ( test ! -d edition-es2022/source || ( mv edition-es2022/source edition-temp && rm -rf edition-es2022 && mv edition-temp edition-es2022 ) ) && printf '%s' '{\"type\": \"commonjs\"}' > edition-es2022/package.json","our:compile:edition-es2022-esm":"tsc --module ESNext --target ES2022 --outDir ./edition-es2022-esm --project tsconfig.json && ( test ! -d edition-es2022-esm/source || ( mv edition-es2022-esm/source edition-temp && rm -rf edition-es2022-esm && mv edition-temp edition-es2022-esm ) ) && printf '%s' '{\"type\": \"module\"}' > edition-es2022-esm/package.json","our:compile:edition-types":"tsc --emitDeclarationOnly --declaration --declarationMap --declarationDir ./edition-types --project tsconfig.json && ( test ! -d edition-types/source || ( mv edition-types/source edition-temp && rm -rf edition-types && mv edition-temp edition-types ) )","our:deploy":"printf '%s\n' 'no need for this project'","our:meta":"npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz","our:meta:contributors":"update-contributors","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -rf ./docs && typedoc --exclude '**/+(*test*|node_modules)' --excludeExternals --out ./docs ./source","our:meta:projectz":"projectz compile","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep \"v$npm_package_version\" || (printf '%s\n' \"add a changelog entry for v$npm_package_version\" && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (printf '%s\n' 'proper changelog entry not found' && exit -1) && git tag \"v$npm_package_version\" -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier","our:verify:directory":"valid-directory","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write .","test":"node ./edition-es2022/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true,"trailingComma":"all","endOfLine":"lf"},"_id":"getmac@6.4.0","gitHead":"c6bf74d088692028c6a77ac7ccc85b7f36415187","_nodeVersion":"20.10.0","_npmVersion":"10.2.3","dist":{"integrity":"sha512-TcJUbxAYORaeqrgmU8cTnGjxzmr8oonnzG7sF9IDKmvQrz/IU946JLQ6R16D81tWUpu5AydqP+0aXE9xxyJQQg==","shasum":"10c9a2676d427464d9ca0d4a9d7b38eae5d5e0ab","tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-6.4.0.tgz","fileCount":20,"unpackedSize":39298,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDDJjEs6pNIbWl90bLvuG9AHETw9AH4TybFuALzmtdIuwIgWHbzPF09qF9j7mFsCl78sZLyZF6W1jUXsx7839BayCM="}]},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_6.4.0_1701805862057_0.6913946557445163"},"_hasShrinkwrap":false},"6.5.0":{"name":"getmac","version":"6.5.0","license":"Artistic-2.0","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","funding":"https://bevry.me/fund","repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"bugs":{"url":"https://github.com/bevry/getmac/issues"},"keywords":["deno","deno-edition","deno-entry","denoland","es2022","export-default","getmac","ifconfig","ipconfig","mac","mac-address","node","typed","types","typescript"],"badges":{"list":["githubworkflow","npmversion","npmdownloads","---","githubsponsors","thanksdev","patreon","liberapay","buymeacoffee","opencollective","crypto","paypal","---","discord","twitch"],"config":{"githubWorkflow":"bevry","githubSponsorsUsername":"balupton","thanksdevGithubUsername":"bevry","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","discordServerID":"1147436445783560193","discordServerInvite":"nQuXddV7VP","twitchUsername":"balupton","githubUsername":"bevry","githubRepository":"getmac","githubSlug":"bevry/getmac","npmPackageName":"getmac"}},"author":{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://balupton.com"},"authors":["Benjamin Lupton <b@lupton.cc> (https://balupton.com) (https://github.com/balupton): Accelerating collaborative wisdom."],"maintainers":[{"name":"anonymous","email":"us@bevry.me"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://balupton.com"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/benoitsepe"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://guhcostan.dev/"},{"name":"Isaac Huang","url":"https://caasih.net"},{"name":"Jan Pilzer","url":"https://github.com/Hirse"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"zboszor","url":"https://github.com/zboszor"}],"sponsors":["Andrew Nesbitt (https://nesbitt.io) (https://github.com/andrew): Software engineer and researcher","Balsa <hello@balsa.com> (https://balsa.com) (https://github.com/balsa): We're Balsa, and we're building tools for builders.","Codecov <hello-codecov@sentry.io> (https://codecov.io/) (https://github.com/codecov): Empower developers with tools to improve code quality and testing.","Poonacha Medappa (https://poonachamedappa.com) (https://github.com/km-Poonacha)","Rob Morris <rob@prismatik.com.au> (https://github.com/Rob-Morris)","Sentry (https://sentry.io) (https://github.com/getsentry): Real-time crash reporting for your web apps, mobile apps, and games.","Syntax <scott@syntax.fm> (https://syntax.fm) (https://github.com/syntaxfm): Syntax Podcast"],"donors":["Andrew Nesbitt (https://nesbitt.io) (https://github.com/andrew)","Balsa <hello@balsa.com> (https://balsa.com) (https://github.com/balsa)","Chad (https://opencollective.com/chad8)","Codecov <hello-codecov@sentry.io> (https://codecov.io/) (https://github.com/codecov)","entroniq (https://gitlab.com/entroniq) (https://thanks.dev/d/gl/entroniq)","Jean-Luc Geering (https://github.com/jlgeering) (https://opencollective.com/jlgeering) (https://twitter.com/jlgeering)","Michael Duane Mooring (https://bevry.me) (https://github.com/mikeumus) (https://opencollective.com/mikeumus) (https://twitter.com/mikeumus)","Mohammed Shah <shah@idk.uno> (https://github.com/smashah) (https://thanks.dev/d/gh/smashah) (https://twitter.com/smashah)","Poonacha Medappa (https://poonachamedappa.com) (https://github.com/km-Poonacha)","Rob Morris <rob@prismatik.com.au> (https://github.com/Rob-Morris)","Sentry (https://sentry.io) (https://github.com/getsentry)","ServieJS (https://github.com/serviejs) (https://thanks.dev/d/gh/serviejs)","Skunk Team (https://skunk.team) (https://github.com/skunkteam)","Syntax <scott@syntax.fm> (https://syntax.fm) (https://github.com/syntaxfm)"],"engines":{"node":">=8"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["source","typescript","import"],"engines":false},{"description":"TypeScript compiled against ES2022 for Node.js 8 || 10 || 12 || 14 || 16 || 18 || 20 || 21 with Require for modules","directory":"edition-es2022","entry":"index.js","tags":["compiled","javascript","es2022","require"],"engines":{"node":"8 || 10 || 12 || 14 || 16 || 18 || 20 || 21","browsers":false}},{"description":"TypeScript compiled against ES2022 for Node.js 12 || 14 || 16 || 18 || 20 || 21 with Import for modules","directory":"edition-es2022-esm","entry":"index.js","tags":["compiled","javascript","es2022","import"],"engines":{"node":"12 || 14 || 16 || 18 || 20 || 21","browsers":false}},{"description":"TypeScript compiled Types with Import for modules","directory":"edition-types","entry":"index.d.ts","tags":["compiled","types","import"],"engines":false},{"description":"TypeScript source code made to be compatible with Deno","directory":"edition-deno","entry":"index.ts","tags":["typescript","import","deno"],"engines":{"deno":true,"browsers":false}}],"types":"edition-types/index.d.ts","type":"module","main":"edition-es2022/index.js","exports":{"node":{"types":"./edition-types/index.d.ts","import":"./edition-es2022-esm/index.js","require":"./edition-es2022/index.js"}},"deno":"edition-deno/index.ts","devDependencies":{"@types/node":"^20.10.5","@typescript-eslint/eslint-plugin":"^6.16.0","@typescript-eslint/parser":"^6.16.0","assert-helpers":"^11.11.0","eslint":"^8.56.0","eslint-config-bevry":"^5.3.0","eslint-config-prettier":"^9.1.0","eslint-plugin-prettier":"^5.1.2","kava":"^7.6.0","make-deno-edition":"^2.1.0","prettier":"^3.1.1","projectz":"^4.0.0","typedoc":"^0.25.4","typescript":"5.3.3","valid-directory":"^4.7.0"},"scripts":{"our:clean":"rm -rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:deno && npm run our:compile:edition-es2022 && npm run our:compile:edition-es2022-esm && npm run our:compile:edition-types","our:compile:deno":"make-deno-edition --attempt","our:compile:edition-es2022":"tsc --module commonjs --target ES2022 --outDir ./edition-es2022 --project tsconfig.json && ( test ! -d edition-es2022/source || ( mv edition-es2022/source edition-temp && rm -rf edition-es2022 && mv edition-temp edition-es2022 ) ) && printf '%s' '{\"type\": \"commonjs\"}' > edition-es2022/package.json","our:compile:edition-es2022-esm":"tsc --module ESNext --target ES2022 --outDir ./edition-es2022-esm --project tsconfig.json && ( test ! -d edition-es2022-esm/source || ( mv edition-es2022-esm/source edition-temp && rm -rf edition-es2022-esm && mv edition-temp edition-es2022-esm ) ) && printf '%s' '{\"type\": \"module\"}' > edition-es2022-esm/package.json","our:compile:edition-types":"tsc --emitDeclarationOnly --declaration --declarationMap --declarationDir ./edition-types --project tsconfig.json && ( test ! -d edition-types/source || ( mv edition-types/source edition-temp && rm -rf edition-types && mv edition-temp edition-types ) )","our:deploy":"printf '%s\n' 'no need for this project'","our:meta":"npm run our:meta:docs && npm run our:meta:projectz","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -rf ./docs && typedoc --exclude '**/+(*test*|node_modules)' --excludeExternals --out ./docs ./source","our:meta:projectz":"projectz","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep \"v$npm_package_version\" || (printf '%s\n' \"add a changelog entry for v$npm_package_version\" && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (printf '%s\n' 'proper changelog entry not found' && exit -1) && git tag \"v$npm_package_version\" -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:eslint && npm run our:verify:prettier","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write .","test":"node ./edition-es2022/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true,"trailingComma":"all","endOfLine":"lf"},"_id":"getmac@6.5.0","gitHead":"366ef9ce3b60eff2de075bd4adca382b4be31592","_nodeVersion":"20.10.0","_npmVersion":"10.2.3","dist":{"integrity":"sha512-/McMqmu3g7cO8b4YyIXeh8MWH8CrS1B4vnVE3azMkvyhmR4zwoPRwKCWvxpzts1jk+ngWTuqn6ZUkjW6ou8y5g==","shasum":"a616e7ff61d9185c5780d4cde71da3b013288bd9","tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-6.5.0.tgz","fileCount":20,"unpackedSize":41435,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCjjJkc9xv9TEEBolotB4gR/H7KysazG+jaqgW33DgMsAIgfuZVwljEdBHeQaoBMFzqyTqYkSmX3KDlvropK7UzUUw="}]},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_6.5.0_1703678515482_0.8240577034831147"},"_hasShrinkwrap":false},"6.5.0-next.1703678585.366ef9ce3b60eff2de075bd4adca382b4be31592":{"name":"getmac","version":"6.5.0-next.1703678585.366ef9ce3b60eff2de075bd4adca382b4be31592","license":"Artistic-2.0","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","funding":"https://bevry.me/fund","repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"bugs":{"url":"https://github.com/bevry/getmac/issues"},"keywords":["deno","deno-edition","deno-entry","denoland","es2022","export-default","getmac","ifconfig","ipconfig","mac","mac-address","node","typed","types","typescript"],"badges":{"list":["githubworkflow","npmversion","npmdownloads","---","githubsponsors","thanksdev","patreon","liberapay","buymeacoffee","opencollective","crypto","paypal","---","discord","twitch"],"config":{"githubWorkflow":"bevry","githubSponsorsUsername":"balupton","thanksdevGithubUsername":"bevry","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","discordServerID":"1147436445783560193","discordServerInvite":"nQuXddV7VP","twitchUsername":"balupton","githubUsername":"bevry","githubRepository":"getmac","githubSlug":"bevry/getmac","npmPackageName":"getmac"}},"author":{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://balupton.com"},"authors":["Benjamin Lupton <b@lupton.cc> (https://balupton.com) (https://github.com/balupton): Accelerating collaborative wisdom."],"maintainers":[{"name":"anonymous","email":"us@bevry.me"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://balupton.com"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/benoitsepe"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://guhcostan.dev/"},{"name":"Isaac Huang","url":"https://caasih.net"},{"name":"Jan Pilzer","url":"https://github.com/Hirse"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"zboszor","url":"https://github.com/zboszor"}],"sponsors":["Andrew Nesbitt (https://nesbitt.io) (https://github.com/andrew): Software engineer and researcher","Balsa <hello@balsa.com> (https://balsa.com) (https://github.com/balsa): We're Balsa, and we're building tools for builders.","Codecov <hello-codecov@sentry.io> (https://codecov.io/) (https://github.com/codecov): Empower developers with tools to improve code quality and testing.","Poonacha Medappa (https://poonachamedappa.com) (https://github.com/km-Poonacha)","Rob Morris <rob@prismatik.com.au> (https://github.com/Rob-Morris)","Sentry (https://sentry.io) (https://github.com/getsentry): Real-time crash reporting for your web apps, mobile apps, and games.","Syntax <scott@syntax.fm> (https://syntax.fm) (https://github.com/syntaxfm): Syntax Podcast"],"donors":["Andrew Nesbitt (https://nesbitt.io) (https://github.com/andrew)","Balsa <hello@balsa.com> (https://balsa.com) (https://github.com/balsa)","Chad (https://opencollective.com/chad8)","Codecov <hello-codecov@sentry.io> (https://codecov.io/) (https://github.com/codecov)","entroniq (https://gitlab.com/entroniq) (https://thanks.dev/d/gl/entroniq)","Jean-Luc Geering (https://github.com/jlgeering) (https://opencollective.com/jlgeering) (https://twitter.com/jlgeering)","Michael Duane Mooring (https://bevry.me) (https://github.com/mikeumus) (https://opencollective.com/mikeumus) (https://twitter.com/mikeumus)","Mohammed Shah <shah@idk.uno> (https://github.com/smashah) (https://thanks.dev/d/gh/smashah) (https://twitter.com/smashah)","Poonacha Medappa (https://poonachamedappa.com) (https://github.com/km-Poonacha)","Rob Morris <rob@prismatik.com.au> (https://github.com/Rob-Morris)","Sentry (https://sentry.io) (https://github.com/getsentry)","ServieJS (https://github.com/serviejs) (https://thanks.dev/d/gh/serviejs)","Skunk Team (https://skunk.team) (https://github.com/skunkteam)","Syntax <scott@syntax.fm> (https://syntax.fm) (https://github.com/syntaxfm)"],"engines":{"node":">=8"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["source","typescript","import"],"engines":false},{"description":"TypeScript compiled against ES2022 for Node.js 8 || 10 || 12 || 14 || 16 || 18 || 20 || 21 with Require for modules","directory":"edition-es2022","entry":"index.js","tags":["compiled","javascript","es2022","require"],"engines":{"node":"8 || 10 || 12 || 14 || 16 || 18 || 20 || 21","browsers":false}},{"description":"TypeScript compiled against ES2022 for Node.js 12 || 14 || 16 || 18 || 20 || 21 with Import for modules","directory":"edition-es2022-esm","entry":"index.js","tags":["compiled","javascript","es2022","import"],"engines":{"node":"12 || 14 || 16 || 18 || 20 || 21","browsers":false}},{"description":"TypeScript compiled Types with Import for modules","directory":"edition-types","entry":"index.d.ts","tags":["compiled","types","import"],"engines":false},{"description":"TypeScript source code made to be compatible with Deno","directory":"edition-deno","entry":"index.ts","tags":["typescript","import","deno"],"engines":{"deno":true,"browsers":false}}],"types":"edition-types/index.d.ts","type":"module","main":"edition-es2022/index.js","exports":{"node":{"types":"./edition-types/index.d.ts","import":"./edition-es2022-esm/index.js","require":"./edition-es2022/index.js"}},"deno":"edition-deno/index.ts","devDependencies":{"@types/node":"^20.10.5","@typescript-eslint/eslint-plugin":"^6.16.0","@typescript-eslint/parser":"^6.16.0","assert-helpers":"^11.11.0","eslint":"^8.56.0","eslint-config-bevry":"^5.3.0","eslint-config-prettier":"^9.1.0","eslint-plugin-prettier":"^5.1.2","kava":"^7.6.0","make-deno-edition":"^2.1.0","prettier":"^3.1.1","projectz":"^4.0.0","typedoc":"^0.25.4","typescript":"5.3.3","valid-directory":"^4.7.0"},"scripts":{"our:clean":"rm -rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:deno && npm run our:compile:edition-es2022 && npm run our:compile:edition-es2022-esm && npm run our:compile:edition-types","our:compile:deno":"make-deno-edition --attempt","our:compile:edition-es2022":"tsc --module commonjs --target ES2022 --outDir ./edition-es2022 --project tsconfig.json && ( test ! -d edition-es2022/source || ( mv edition-es2022/source edition-temp && rm -rf edition-es2022 && mv edition-temp edition-es2022 ) ) && printf '%s' '{\"type\": \"commonjs\"}' > edition-es2022/package.json","our:compile:edition-es2022-esm":"tsc --module ESNext --target ES2022 --outDir ./edition-es2022-esm --project tsconfig.json && ( test ! -d edition-es2022-esm/source || ( mv edition-es2022-esm/source edition-temp && rm -rf edition-es2022-esm && mv edition-temp edition-es2022-esm ) ) && printf '%s' '{\"type\": \"module\"}' > edition-es2022-esm/package.json","our:compile:edition-types":"tsc --emitDeclarationOnly --declaration --declarationMap --declarationDir ./edition-types --project tsconfig.json && ( test ! -d edition-types/source || ( mv edition-types/source edition-temp && rm -rf edition-types && mv edition-temp edition-types ) )","our:deploy":"printf '%s\n' 'no need for this project'","our:meta":"npm run our:meta:docs && npm run our:meta:projectz","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -rf ./docs && typedoc --exclude '**/+(*test*|node_modules)' --excludeExternals --out ./docs ./source","our:meta:projectz":"projectz","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep \"v$npm_package_version\" || (printf '%s\n' \"add a changelog entry for v$npm_package_version\" && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (printf '%s\n' 'proper changelog entry not found' && exit -1) && git tag \"v$npm_package_version\" -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:eslint && npm run our:verify:prettier","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write .","test":"node ./edition-es2022/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true,"trailingComma":"all","endOfLine":"lf"},"_id":"getmac@6.5.0-next.1703678585.366ef9ce3b60eff2de075bd4adca382b4be31592","readmeFilename":"README.md","gitHead":"366ef9ce3b60eff2de075bd4adca382b4be31592","_nodeVersion":"20.10.0","_npmVersion":"10.2.3","dist":{"integrity":"sha512-v5UFG8vs11teXGdOrjcGwW5XfKrKL3Z12ce95WUwNhMGKSWDCioUp56WTf+Mw5Ig63NNNkUUNGzjfS0ywd7mSA==","shasum":"e9521989144fcca7f5f0f84207bfc8618e60f259","tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-6.5.0-next.1703678585.366ef9ce3b60eff2de075bd4adca382b4be31592.tgz","fileCount":20,"unpackedSize":41492,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCFlSNLdC3xj/9vs4HD2gvA5NhTVLdW4oj8pvPH5RBlFQIhAP5xdGlNO7IFT3o+OOcaBkz5gR4TVIcyiQlUbsQBjHNq"}]},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_6.5.0-next.1703678585.366ef9ce3b60eff2de075bd4adca382b4be31592_1703678587171_0.7378976188193098"},"_hasShrinkwrap":false},"6.6.0-next.1703845453.e6a5a21908f315df749ee64210966b877a59384f":{"name":"getmac","version":"6.6.0-next.1703845453.e6a5a21908f315df749ee64210966b877a59384f","license":"Artistic-2.0","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","funding":"https://bevry.me/fund","repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"bugs":{"url":"https://github.com/bevry/getmac/issues"},"keywords":["deno","deno-edition","deno-entry","denoland","es2022","export-default","getmac","ifconfig","ipconfig","mac","mac-address","node","typed","types","typescript"],"badges":{"list":["githubworkflow","npmversion","npmdownloads","---","githubsponsors","thanksdev","patreon","liberapay","buymeacoffee","opencollective","crypto","paypal","---","discord","twitch"],"config":{"githubWorkflow":"bevry","githubSponsorsUsername":"balupton","thanksdevGithubUsername":"bevry","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","discordServerID":"1147436445783560193","discordServerInvite":"nQuXddV7VP","twitchUsername":"balupton","githubUsername":"bevry","githubRepository":"getmac","githubSlug":"bevry/getmac","npmPackageName":"getmac"}},"author":{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://balupton.com"},"authors":["Benjamin Lupton <b@lupton.cc> (https://balupton.com) (https://github.com/balupton): Accelerating collaborative wisdom."],"maintainers":[{"name":"anonymous","email":"us@bevry.me"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://balupton.com"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/benoitsepe"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://guhcostan.dev"},{"name":"Isaac Huang","url":"https://caasih.net"},{"name":"Jan Pilzer","url":"https://github.com/Hirse"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"zboszor","url":"https://github.com/zboszor"}],"sponsors":["Andrew Nesbitt (https://nesbitt.io) (https://github.com/andrew): Software engineer and researcher","Balsa <hello@balsa.com> (https://balsa.com) (https://github.com/balsa): We're Balsa, and we're building tools for builders.","Codecov <hello-codecov@sentry.io> (https://codecov.io) (https://github.com/codecov): Empower developers with tools to improve code quality and testing.","Poonacha Medappa (https://poonachamedappa.com) (https://github.com/km-Poonacha)","Rob Morris <rob@prismatik.com.au> (https://github.com/Rob-Morris)","Sentry (https://sentry.io) (https://github.com/getsentry): Real-time crash reporting for your web apps, mobile apps, and games.","Syntax <scott@syntax.fm> (https://syntax.fm) (https://github.com/syntaxfm): Syntax Podcast"],"donors":["Andrew Nesbitt (https://nesbitt.io) (https://github.com/andrew)","Armen Mkrtchian (https://mogoni.dev) (https://github.com/Armenm)","Balsa <hello@balsa.com> (https://balsa.com) (https://github.com/balsa)","Chad (https://opencollective.com/chad8)","Codecov <hello-codecov@sentry.io> (https://codecov.io) (https://github.com/codecov)","dr.dimitru (https://veliovgroup.com) (https://github.com/dr-dimitru)","Elliott Ditman (https://elliottditman.com) (https://github.com/elliottditman)","entroniq (https://gitlab.com/entroniq) (https://thanks.dev/d/gl/entroniq)","GitHub (https://github.com/about) (https://github.com/github)","Hunter Beast (https://cryptoquick.com) (https://github.com/cryptoquick)","Jean-Luc Geering (https://github.com/jlgeering) (https://opencollective.com/jlgeering) (https://twitter.com/jlgeering)","Michael Duane Mooring (https://mdm.cc) (https://github.com/mikeumus) (https://opencollective.com/mikeumus) (https://twitter.com/mikeumus)","Michael Harry Scepaniak <mhs1.sys@gmail.com> (https://michaelscepaniak.com) (https://github.com/hispanic)","Mohammed Shah <shah@idk.uno> (https://github.com/smashah) (https://thanks.dev/d/gh/smashah) (https://twitter.com/smashah)","Mr. Henry <hello@mrhenry.be> (https://mrhenry.be) (https://github.com/mrhenry)","Nermal <nermalcat69@skiff.com> (https://arjunaditya.vercel.app) (https://github.com/nermalcat69)","Pleo (https://pleo.io) (https://github.com/pleo-io)","Poonacha Medappa (https://poonachamedappa.com) (https://github.com/km-Poonacha)","Rob Morris <rob@prismatik.com.au> (https://github.com/Rob-Morris)","Robert de Forest <guitar.robot@gmail.com> (https://github.com/rdeforest)","Sentry (https://sentry.io) (https://github.com/getsentry)","ServieJS (https://github.com/serviejs) (https://thanks.dev/d/gh/serviejs)","Skunk Team (https://skunk.team) (https://github.com/skunkteam)","Syntax <scott@syntax.fm> (https://syntax.fm) (https://github.com/syntaxfm)","WriterJohnBuck (https://github.com/WriterJohnBuck)"],"engines":{"node":">=8"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["source","typescript","import"],"engines":false},{"description":"TypeScript compiled against ES2022 for Node.js 8 || 10 || 12 || 14 || 16 || 18 || 20 || 21 with Require for modules","directory":"edition-es2022","entry":"index.js","tags":["compiled","javascript","es2022","require"],"engines":{"node":"8 || 10 || 12 || 14 || 16 || 18 || 20 || 21","browsers":false}},{"description":"TypeScript compiled against ES2022 for Node.js 12 || 14 || 16 || 18 || 20 || 21 with Import for modules","directory":"edition-es2022-esm","entry":"index.js","tags":["compiled","javascript","es2022","import"],"engines":{"node":"12 || 14 || 16 || 18 || 20 || 21","browsers":false}},{"description":"TypeScript compiled Types with Import for modules","directory":"edition-types","entry":"index.d.ts","tags":["compiled","types","import"],"engines":false},{"description":"TypeScript source code made to be compatible with Deno","directory":"edition-deno","entry":"index.ts","tags":["typescript","import","deno"],"engines":{"deno":true,"browsers":false}}],"types":"edition-types/index.d.ts","type":"module","main":"edition-es2022/index.js","exports":{"node":{"types":"./edition-types/index.d.ts","import":"./edition-es2022-esm/index.js","require":"./edition-es2022/index.js"}},"deno":"edition-deno/index.ts","devDependencies":{"@types/node":"^20.10.5","@typescript-eslint/eslint-plugin":"^6.16.0","@typescript-eslint/parser":"^6.16.0","assert-helpers":"^11.12.0","eslint":"^8.56.0","eslint-config-bevry":"^5.3.0","eslint-config-prettier":"^9.1.0","eslint-plugin-prettier":"^5.1.2","kava":"^7.8.0","make-deno-edition":"^2.2.0","prettier":"^3.1.1","projectz":"^4.1.1","typedoc":"^0.25.4","typescript":"5.3.3","valid-directory":"^4.8.0"},"scripts":{"our:clean":"rm -rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:deno && npm run our:compile:edition-es2022 && npm run our:compile:edition-es2022-esm && npm run our:compile:edition-types","our:compile:deno":"make-deno-edition --attempt","our:compile:edition-es2022":"tsc --module commonjs --target ES2022 --outDir ./edition-es2022 --project tsconfig.json && ( test ! -d edition-es2022/source || ( mv edition-es2022/source edition-temp && rm -rf edition-es2022 && mv edition-temp edition-es2022 ) ) && printf '%s' '{\"type\": \"commonjs\"}' > edition-es2022/package.json","our:compile:edition-es2022-esm":"tsc --module ESNext --target ES2022 --outDir ./edition-es2022-esm --project tsconfig.json && ( test ! -d edition-es2022-esm/source || ( mv edition-es2022-esm/source edition-temp && rm -rf edition-es2022-esm && mv edition-temp edition-es2022-esm ) ) && printf '%s' '{\"type\": \"module\"}' > edition-es2022-esm/package.json","our:compile:edition-types":"tsc --emitDeclarationOnly --declaration --declarationMap --declarationDir ./edition-types --project tsconfig.json && ( test ! -d edition-types/source || ( mv edition-types/source edition-temp && rm -rf edition-types && mv edition-temp edition-types ) )","our:deploy":"printf '%s\n' 'no need for this project'","our:meta":"npm run our:meta:docs && npm run our:meta:projectz","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -rf ./docs && typedoc --exclude '**/+(*test*|node_modules)' --excludeExternals --out ./docs ./source","our:meta:projectz":"projectz --offline","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep \"v$npm_package_version\" || (printf '%s\n' \"add a changelog entry for v$npm_package_version\" && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (printf '%s\n' 'proper changelog entry not found' && exit -1) && git tag \"v$npm_package_version\" -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:eslint && npm run our:verify:prettier","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write .","test":"node ./edition-es2022/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true,"trailingComma":"all","endOfLine":"lf"},"_id":"getmac@6.6.0-next.1703845453.e6a5a21908f315df749ee64210966b877a59384f","readmeFilename":"README.md","gitHead":"e6a5a21908f315df749ee64210966b877a59384f","_nodeVersion":"20.10.0","_npmVersion":"10.2.3","dist":{"integrity":"sha512-Yn0waV3t4x+xHhtPdZ9kJuuj8vWZdU851BiLVKSYbeRBHbeCSMKNmZbH26xTN3B3RGUaB5acslX4w2Hq3q/IPQ==","shasum":"841c00314a504b94cdb15256b5ec84479b6db427","tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-6.6.0-next.1703845453.e6a5a21908f315df749ee64210966b877a59384f.tgz","fileCount":20,"unpackedSize":42864,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEotQk24H/5hJI45hdZkpWiSKSLo9bGVAjss9IU5tpuQAiEA1OwVh2wTTxo/LtHeb8J3fMDvS+BYprqldfh8bBxkrZs="}]},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_6.6.0-next.1703845453.e6a5a21908f315df749ee64210966b877a59384f_1703845501029_0.13573816553355011"},"_hasShrinkwrap":false},"6.6.0":{"name":"getmac","version":"6.6.0","license":"Artistic-2.0","description":"Get the MAC address of the current machine you are on.","homepage":"https://github.com/bevry/getmac","funding":"https://bevry.me/fund","repository":{"type":"git","url":"git+https://github.com/bevry/getmac.git"},"bugs":{"url":"https://github.com/bevry/getmac/issues"},"keywords":["deno","deno-edition","deno-entry","denoland","es2022","export-default","getmac","ifconfig","ipconfig","mac","mac-address","node","typed","types","typescript"],"badges":{"list":["githubworkflow","npmversion","npmdownloads","---","githubsponsors","thanksdev","patreon","liberapay","buymeacoffee","opencollective","crypto","paypal","---","discord","twitch"],"config":{"githubWorkflow":"bevry","githubSponsorsUsername":"balupton","thanksdevGithubUsername":"bevry","buymeacoffeeUsername":"balupton","cryptoURL":"https://bevry.me/crypto","flattrUsername":"balupton","liberapayUsername":"bevry","opencollectiveUsername":"bevry","patreonUsername":"bevry","paypalURL":"https://bevry.me/paypal","wishlistURL":"https://bevry.me/wishlist","discordServerID":"1147436445783560193","discordServerInvite":"nQuXddV7VP","twitchUsername":"balupton","githubUsername":"bevry","githubRepository":"getmac","githubSlug":"bevry/getmac","npmPackageName":"getmac"}},"author":{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://balupton.com"},"authors":["Benjamin Lupton <b@lupton.cc> (https://balupton.com) (https://github.com/balupton): Accelerating collaborative wisdom."],"maintainers":[{"name":"anonymous","email":"us@bevry.me"}],"contributors":[{"name":"Benjamin Lupton","email":"b@lupton.cc","url":"https://balupton.com"},{"name":"Benoit Sepe","email":"benoit.sepe@gmail.com","url":"https://github.com/benoitsepe"},{"name":"Gustavo Costa Neves","email":"guhcostan@gmail.com","url":"https://guhcostan.dev"},{"name":"Isaac Huang","url":"https://caasih.net"},{"name":"Jan Pilzer","url":"https://github.com/Hirse"},{"name":"Stephen Brown II","email":"Stephen.Brown2@gmail.com","url":"https://github.com/StephenBrown2"},{"name":"ted shroyer","url":"https://github.com/tedshroyer"},{"name":"zboszor","url":"https://github.com/zboszor"}],"sponsors":["Andrew Nesbitt (https://nesbitt.io) (https://github.com/andrew): Software engineer and researcher","Balsa <hello@balsa.com> (https://balsa.com) (https://github.com/balsa): We're Balsa, and we're building tools for builders.","Codecov <hello-codecov@sentry.io> (https://codecov.io) (https://github.com/codecov): Empower developers with tools to improve code quality and testing.","Poonacha Medappa (https://poonachamedappa.com) (https://github.com/km-Poonacha)","Rob Morris <rob@prismatik.com.au> (https://github.com/Rob-Morris)","Sentry (https://sentry.io) (https://github.com/getsentry): Real-time crash reporting for your web apps, mobile apps, and games.","Syntax <scott@syntax.fm> (https://syntax.fm) (https://github.com/syntaxfm): Syntax Podcast"],"donors":["Andrew Nesbitt (https://nesbitt.io) (https://github.com/andrew)","Armen Mkrtchian (https://mogoni.dev) (https://github.com/Armenm)","Balsa <hello@balsa.com> (https://balsa.com) (https://github.com/balsa)","Chad (https://opencollective.com/chad8)","Codecov <hello-codecov@sentry.io> (https://codecov.io) (https://github.com/codecov)","dr.dimitru (https://veliovgroup.com) (https://github.com/dr-dimitru)","Elliott Ditman (https://elliottditman.com) (https://github.com/elliottditman)","entroniq (https://gitlab.com/entroniq) (https://thanks.dev/d/gl/entroniq)","GitHub (https://github.com/about) (https://github.com/github)","Hunter Beast (https://cryptoquick.com) (https://github.com/cryptoquick)","Jean-Luc Geering (https://github.com/jlgeering) (https://opencollective.com/jlgeering) (https://twitter.com/jlgeering)","Michael Duane Mooring (https://mdm.cc) (https://github.com/mikeumus) (https://opencollective.com/mikeumus) (https://twitter.com/mikeumus)","Michael Harry Scepaniak <mhs1.sys@gmail.com> (https://michaelscepaniak.com) (https://github.com/hispanic)","Mohammed Shah <shah@idk.uno> (https://github.com/smashah) (https://thanks.dev/d/gh/smashah) (https://twitter.com/smashah)","Mr. Henry <hello@mrhenry.be> (https://mrhenry.be) (https://github.com/mrhenry)","Nermal <nermalcat69@skiff.com> (https://arjunaditya.vercel.app) (https://github.com/nermalcat69)","Pleo (https://pleo.io) (https://github.com/pleo-io)","Poonacha Medappa (https://poonachamedappa.com) (https://github.com/km-Poonacha)","Rob Morris <rob@prismatik.com.au> (https://github.com/Rob-Morris)","Robert de Forest <guitar.robot@gmail.com> (https://github.com/rdeforest)","Sentry (https://sentry.io) (https://github.com/getsentry)","ServieJS (https://github.com/serviejs) (https://thanks.dev/d/gh/serviejs)","Skunk Team (https://skunk.team) (https://github.com/skunkteam)","Syntax <scott@syntax.fm> (https://syntax.fm) (https://github.com/syntaxfm)","WriterJohnBuck (https://github.com/WriterJohnBuck)"],"engines":{"node":">=8"},"editions":[{"description":"TypeScript source code with Import for modules","directory":"source","entry":"index.ts","tags":["source","typescript","import"],"engines":false},{"description":"TypeScript compiled against ES2022 for Node.js 8 || 10 || 12 || 14 || 16 || 18 || 20 || 21 with Require for modules","directory":"edition-es2022","entry":"index.js","tags":["compiled","javascript","es2022","require"],"engines":{"node":"8 || 10 || 12 || 14 || 16 || 18 || 20 || 21","browsers":false}},{"description":"TypeScript compiled against ES2022 for Node.js 12 || 14 || 16 || 18 || 20 || 21 with Import for modules","directory":"edition-es2022-esm","entry":"index.js","tags":["compiled","javascript","es2022","import"],"engines":{"node":"12 || 14 || 16 || 18 || 20 || 21","browsers":false}},{"description":"TypeScript compiled Types with Import for modules","directory":"edition-types","entry":"index.d.ts","tags":["compiled","types","import"],"engines":false},{"description":"TypeScript source code made to be compatible with Deno","directory":"edition-deno","entry":"index.ts","tags":["typescript","import","deno"],"engines":{"deno":true,"browsers":false}}],"types":"edition-types/index.d.ts","type":"module","main":"edition-es2022/index.js","exports":{"node":{"types":"./edition-types/index.d.ts","import":"./edition-es2022-esm/index.js","require":"./edition-es2022/index.js"}},"deno":"edition-deno/index.ts","devDependencies":{"@types/node":"^20.10.5","@typescript-eslint/eslint-plugin":"^6.16.0","@typescript-eslint/parser":"^6.16.0","assert-helpers":"^11.12.0","eslint":"^8.56.0","eslint-config-bevry":"^5.3.0","eslint-config-prettier":"^9.1.0","eslint-plugin-prettier":"^5.1.2","kava":"^7.8.0","make-deno-edition":"^2.2.0","prettier":"^3.1.1","projectz":"^4.1.1","typedoc":"^0.25.4","typescript":"5.3.3","valid-directory":"^4.8.0"},"scripts":{"our:clean":"rm -rf ./docs ./edition* ./es2015 ./es5 ./out ./.next","our:compile":"npm run our:compile:deno && npm run our:compile:edition-es2022 && npm run our:compile:edition-es2022-esm && npm run our:compile:edition-types","our:compile:deno":"make-deno-edition --attempt","our:compile:edition-es2022":"tsc --module commonjs --target ES2022 --outDir ./edition-es2022 --project tsconfig.json && ( test ! -d edition-es2022/source || ( mv edition-es2022/source edition-temp && rm -rf edition-es2022 && mv edition-temp edition-es2022 ) ) && printf '%s' '{\"type\": \"commonjs\"}' > edition-es2022/package.json","our:compile:edition-es2022-esm":"tsc --module ESNext --target ES2022 --outDir ./edition-es2022-esm --project tsconfig.json && ( test ! -d edition-es2022-esm/source || ( mv edition-es2022-esm/source edition-temp && rm -rf edition-es2022-esm && mv edition-temp edition-es2022-esm ) ) && printf '%s' '{\"type\": \"module\"}' > edition-es2022-esm/package.json","our:compile:edition-types":"tsc --emitDeclarationOnly --declaration --declarationMap --declarationDir ./edition-types --project tsconfig.json && ( test ! -d edition-types/source || ( mv edition-types/source edition-temp && rm -rf edition-types && mv edition-temp edition-types ) )","our:deploy":"printf '%s\n' 'no need for this project'","our:meta":"npm run our:meta:docs && npm run our:meta:projectz","our:meta:docs":"npm run our:meta:docs:typedoc","our:meta:docs:typedoc":"rm -rf ./docs && typedoc --exclude '**/+(*test*|node_modules)' --excludeExternals --out ./docs ./source","our:meta:projectz":"projectz --offline","our:release":"npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push","our:release:check-changelog":"cat ./HISTORY.md | grep \"v$npm_package_version\" || (printf '%s\n' \"add a changelog entry for v$npm_package_version\" && exit -1)","our:release:check-dirty":"git diff --exit-code","our:release:prepare":"npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta","our:release:push":"git push origin && git push origin --tags","our:release:tag":"export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (printf '%s\n' 'proper changelog entry not found' && exit -1) && git tag \"v$npm_package_version\" -am \"$MESSAGE\"","our:setup":"npm run our:setup:install","our:setup:install":"npm install","our:test":"npm run our:verify && npm test","our:verify":"npm run our:verify:eslint && npm run our:verify:prettier","our:verify:eslint":"eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source","our:verify:prettier":"prettier --write .","test":"node ./edition-es2022/test.js"},"eslintConfig":{"extends":["bevry"]},"prettier":{"semi":false,"singleQuote":true,"trailingComma":"all","endOfLine":"lf"},"_id":"getmac@6.6.0","gitHead":"e6a5a21908f315df749ee64210966b877a59384f","_nodeVersion":"20.10.0","_npmVersion":"10.2.3","dist":{"integrity":"sha512-o1sq9o5QTfwUyWy7Dao1YGZOI9lN+xzEr9Ul36hyOxFrtuwgLG1ff7oiBEfRDxOrB3jJ2u4jKEs5KMSElyE0cQ==","shasum":"fd7253bd6a6e80fb7614996cdb26f2c419cd0464","tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/getmac/-/getmac-6.6.0.tgz","fileCount":20,"unpackedSize":42807,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBeorXjitLzanRF/gqk/fApAvxgaqK87QB06SH4JY/Z/AiBVlTYPciLc+4uKU9v/o80ia8JU9i8hls9wrBpg53eVZQ=="}]},"_npmUser":{"name":"anonymous","email":"us@bevry.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/getmac_6.6.0_1703845520762_0.2210130563016912"},"_hasShrinkwrap":false}},"dist-tags":{"latest":"6.6.0","next":"6.6.0-next.1703845453.e6a5a21908f315df749ee64210966b877a59384f"},"name":"getmac","time":{"created":"2022-01-26T23:01:34.189Z","modified":"2024-05-31T12:01:45.155Z","5.20.0":"2021-07-29T21:23:24.736Z","5.20.0-next.1627593726.e7cd9844b817a1faac9c5e2e60030f98a528c92d":"2021-07-29T21:22:08.295Z","5.19.0-next.1627507674.b68c958a59ee43d82d16f749825c1b5e5d38091d":"2021-07-28T21:27:56.059Z","5.19.0":"2021-07-28T21:25:20.382Z","5.18.0-next.1627424106.2303dc0736b300ffbb54d311cd38780d3536c491":"2021-07-27T22:15:08.252Z","5.18.0":"2021-07-27T22:12:39.693Z","5.17.0-next.1604234715.e4fe15d9793c65ef135dcda1328fa90b1f4e43fd":"2020-11-01T12:45:16.634Z","5.17.0":"2020-10-29T01:53:53.895Z","5.17.0-next.1603936406.3eb161f416c92287531791aee9ac0a9cd0bb4e9a":"2020-10-29T01:53:27.871Z","5.16.0-next.1603623713.862b91f9af3e664d02f0dc135bd7d1149a2714db":"2020-10-25T11:01:54.683Z","5.16.0-next.1603015694.4cae44e0b3ad331280c5fa787f6c0c68806c75da":"2020-10-18T10:08:16.395Z","5.16.0-next.1602413203.50b347d69236a994a50492aad07968c0c834108f":"2020-10-11T10:46:44.968Z","5.16.0-next.1602409164.c58540230796d906f9df3ee7ac58e3251c532f3a":"2020-10-11T09:39:26.450Z","5.16.0-next.1601797672.05dc7f7d72c88efe5bff4a0ff2f5882b9faaa14e":"2020-10-04T07:47:54.166Z","5.16.0-next.1601214092.03eedb7b9671766b262d44bfb648ebb47c699614":"2020-09-27T13:41:33.726Z","5.16.0-next.1600600292.5754776faba7cdb6782d10680970d6a4a8039c15":"2020-09-20T11:11:33.776Z","5.16.0-next.1599999453.1ba0be43604e76c2d0a08e653da756049dc0f2f2":"2020-09-13T12:17:35.172Z","5.16.0-next.1599997324.8f363883bc804b5149d933108dc66fdb3b050f80":"2020-09-13T11:42:05.887Z","5.16.0-next.1599397736.1c70ffebcb76d84094de3907cda859924adab088":"2020-09-06T13:08:58.293Z","5.16.0":"2020-09-04T13:06:49.745Z","5.16.0-next.1599224731.749d2125658ab1ee17d71921f760a97107e18c28":"2020-09-04T13:05:32.784Z","5.15.0-next.1599201941.bddcaefa3e2036aa0e10ae24cace81f98153de72":"2020-09-04T06:45:43.204Z","5.15.0-next.1599075178.13121e2c68ae85cf2c1eb5d80fd567e49042b503":"2020-09-02T19:33:00.376Z","5.15.0-next.1598780367.45de65512ca9a2329b02f2d62a6127cbf2f1f34c":"2020-08-30T09:39:28.786Z","5.15.0-next.1598187812.a94fbc574e92c19b8579d112b19d1ac50830d9e4":"2020-08-23T13:03:33.815Z","5.15.0-next.1597695762.b0c35fd6a7b6400d4d3fbb21d58107791d357954":"2020-08-17T20:22:44.560Z","5.15.0":"2020-08-17T20:21:31.869Z","5.15.0-next.1597695619.deb40dca57df84889cd61df383270dff2063dc3c":"2020-08-17T20:20:20.762Z","5.14.0":"2020-08-04T04:38:03.861Z","5.14.0-next.1596515798.02b326042f0994dc55f507f1e01ce31fa5cbc04a":"2020-08-04T04:36:39.582Z","5.13.0":"2020-07-21T18:01:02.641Z","5.13.0-next.1595354369.212a289de4e5dfe2018e147688d2a80bc0931b7b":"2020-07-21T17:59:30.994Z","5.12.0":"2020-07-21T15:38:37.007Z","5.12.0-next.1595345833.d8056d8349f4fac4e2d193f358c1953f3dc83793":"2020-07-21T15:37:14.775Z","5.11.0":"2020-06-25T03:10:22.467Z","5.11.0-next.1593054525.f7989a25d7d616b9c4c56fe0d4a0d1d9e51871eb":"2020-06-25T03:08:46.748Z","5.10.0":"2020-06-21T12:01:09.374Z","5.10.0-next.1592740799.289a5eef95cfd9ab9cf5ab218809d0a168aaf385":"2020-06-21T12:00:00.551Z","5.9.0":"2020-06-20T22:57:53.512Z","5.9.0-next.1592693796.6ebd187083eaa5c29a0a068a0198416b68d6235a":"2020-06-20T22:56:37.549Z","5.8.0":"2020-06-20T00:37:32.677Z","5.8.0-next.1592613371.b424af24b21e20454f4346fcd5587728ed7383e2":"2020-06-20T00:36:12.918Z","5.7.0":"2020-06-10T13:30:24.235Z","5.7.0-next.1591795755.717b0a1ae93ffc1f735622e7e23d14213cf05576":"2020-06-10T13:29:17.188Z","5.6.0":"2020-06-10T08:44:27.528Z","5.6.0-next.1591778573.15a406cf53a1c829109df2c5c40a2b2ebb2baae3":"2020-06-10T08:42:54.751Z","5.5.0":"2020-05-21T15:28:12.924Z","5.5.0-next.1590074815.d3092217dc711ecd31bf42d366137b51d3d0c974":"2020-05-21T15:26:56.913Z","5.4.0-next.1590038553.ceb67b4cd4aa1db118d8dffd8713d8a413657161":"2020-05-21T05:22:34.565Z","5.4.0":"2020-05-21T05:19:37.613Z","5.3.0":"2020-05-20T06:27:37.660Z","5.3.0-next.1589955986.4d0f65f3cd5f42f53972409d623897194ed0dbe2":"2020-05-20T06:26:28.214Z","5.2.0":"2020-05-06T04:55:43.818Z","5.2.0-next.1588740871.bc28d2425fec3ae48435b34ad8588b7e067a98e7":"2020-05-06T04:54:33.352Z","5.1.0-next.1588200124.0c434c13f91b771293c707934f6507d18be5e2f0":"2020-04-29T22:42:21.844Z","5.1.0-next.1584137946.d3cca899394af1f344a11026fa4ba019d7910f54":"2020-03-13T22:19:08.093Z","5.1.0-next.1580272327.b2ce5115cbff41682e8272cb224ce0bd77043a7f":"2020-01-29T04:32:22.288Z","5.1.0":"2020-01-29T04:32:06.819Z","5.0.0":"2019-12-18T01:36:58.415Z","5.0.0-next.1576632944.74d458ddaf7df56cbf5236ced566b1c149c448e8":"2019-12-18T01:35:46.117Z","4.4.0-next.1575882546.cf4fa0fa21e8e52a072bb2c6744e01309698d4f4":"2019-12-09T09:09:08.275Z","4.4.0":"2019-12-09T09:07:30.508Z","4.3.0":"2019-12-01T04:53:00.247Z","4.3.0-next.1575175894.d85cbc0ce982fdb9ceedaa503061cb435f76381c":"2019-12-01T04:51:36.494Z","4.2.0":"2019-11-30T21:24:13.120Z","4.2.0-next.1575148972.5933e9d0e89af118648a0f3007ec4512fca2a257":"2019-11-30T21:22:53.895Z","4.1.0-next.1574657320.1595a7b86761b5ad30ba8a6363d9beca4a11c946":"2019-11-25T04:48:42.025Z","4.1.0-next.1574056154.35e833faa7ba7c5eec6e7ecc11133f7801e43c39":"2019-11-18T05:49:16.858Z","4.1.0":"2019-11-18T04:19:11.547Z","4.1.0-next.1574050696.e516da17b04540be5dff476766f997cc59dcdbee":"2019-11-18T04:18:18.074Z","4.0.1":"2019-11-18T02:31:51.792Z","4.0.1-next.1574044248.f864e7ead58cb6ec7b59859826326b2e38efbc7f":"2019-11-18T02:30:50.496Z","4.0.0":"2019-11-18T02:23:10.665Z","4.0.0-next.1574043723.af281ec8c1a9cd2d75a133cb41c6b424ee2ac5ea":"2019-11-18T02:22:04.810Z","3.0.1":"2019-11-18T01:49:30.143Z","3.0.1-next.1574041696.ef271fdf256062251a792f9f4d7fcc49e40d26f5":"2019-11-18T01:48:18.747Z","3.0.0":"2019-11-18T01:46:27.896Z","3.0.0-next.1574041521.013b481b7751b71f64e4b68a64e9d9854ed0c593":"2019-11-18T01:45:23.108Z","2.0.0":"2019-11-17T19:52:25.693Z","2.0.0-next.1574020282.8c4c8755aa254678149a7bff937d618eac2cd5f5":"2019-11-17T19:51:23.561Z","1.5.0-next.1573738565.5dd46ec0dd1892bb54ff2b722a3a413597f2787d":"2019-11-14T13:36:07.134Z","1.5.0-next.1573686306.dc1197af99c8afe969ed073f3a1f5c9a88ac4fe4":"2019-11-13T23:05:08.131Z","1.5.0-next.1573610748.ec0e758cd5759a8da9589ab1df0dcded9ea53822":"2019-11-13T02:05:50.809Z","1.5.0-next.1573602563.767cb9d51b9dedbd9d9afd955a9b14b9d496c44c":"2019-11-12T23:49:27.909Z","1.5.0":"2019-11-12T23:22:12.679Z","1.5.0-next.1573600808.e765d667c7ad4abb7f749358c5179d409d1df07c":"2019-11-12T23:20:10.015Z","1.4.6":"2018-09-03T12:12:24.722Z","1.4.5":"2018-08-23T22:00:32.884Z","1.4.4":"2018-08-19T11:24:28.253Z","1.4.3":"2018-06-06T22:51:12.302Z","1.4.2":"2018-06-06T01:58:27.849Z","1.4.1":"2018-03-28T04:09:22.129Z","1.4.0":"2018-01-25T06:56:58.671Z","1.3.0":"2018-01-25T06:35:28.067Z","1.2.1":"2016-05-10T05:33:12.846Z","1.1.0":"2016-05-10T05:28:09.117Z","1.0.7":"2015-03-05T08:06:11.875Z","1.0.6":"2013-10-27T00:27:02.720Z","1.0.5":"2013-09-01T18:29:29.220Z","1.0.4":"2013-02-12T07:08:22.865Z","1.0.3":"2013-02-12T06:52:40.553Z","1.0.2":"2013-02-12T06:28:50.553Z","1.0.1":"2013-02-12T06:11:49.342Z","1.0.0":"2013-02-12T06:08:40.973Z","1.2.0":"2016-05-10T05:31:42.146Z","5.21.0-next.1698808259.742a8601629b776cb8dfddc94671d989fc621569":"2023-11-01T03:11:01.578Z","5.21.0":"2023-11-01T03:12:58.052Z","6.0.0":"2023-11-13T15:26:21.711Z","6.0.0-next.1699889210.6e5a311d119f6d56878fb9573bfebc50935e01b8":"2023-11-13T15:26:52.612Z","6.1.0-next.1699990142.1bc2bbb964adf32217acc71cd592c433f8554f8d":"2023-11-14T19:29:03.747Z","6.1.0":"2023-11-14T19:29:07.734Z","6.2.0":"2023-11-21T08:28:24.803Z","6.2.0-next.1700555310.7e34b1ad039b830424cadde3ab089f71dd5e6411":"2023-11-21T08:28:32.407Z","6.3.0":"2023-11-24T17:38:30.302Z","6.3.0-next.1700847531.f92b22740ef110fafffb2cf1384add366c351931":"2023-11-24T17:38:53.358Z","6.4.0-next.1701805817.c6bf74d088692028c6a77ac7ccc85b7f36415187":"2023-12-05T19:50:19.121Z","6.4.0":"2023-12-05T19:51:02.234Z","6.5.0":"2023-12-27T12:01:55.672Z","6.5.0-next.1703678585.366ef9ce3b60eff2de075bd4adca382b4be31592":"2023-12-27T12:03:07.366Z","6.6.0-next.1703845453.e6a5a21908f315df749ee64210966b877a59384f":"2023-12-29T10:25:01.239Z","6.6.0":"2023-12-29T10:25:20.886Z"},"readme":"<!-- TITLE/ -->\n\n# getmac\n\n<!-- /TITLE -->\n\n<!-- BADGES/ -->\n\n<span class=\"badge-githubworkflow\"><a href=\"https://github.com/bevry/getmac/actions?query=workflow%3Abevry\" title=\"View the status of this project's GitHub Workflow: bevry\"><img src=\"https://github.com/bevry/getmac/workflows/bevry/badge.svg\" alt=\"Status of the GitHub Workflow: bevry\" /></a></span>\n<span class=\"badge-npmversion\"><a href=\"https://npmjs.org/package/getmac\" title=\"View this project on NPM\"><img src=\"https://img.shields.io/npm/v/getmac.svg\" alt=\"NPM version\" /></a></span>\n<span class=\"badge-npmdownloads\"><a href=\"https://npmjs.org/package/getmac\" title=\"View this project on NPM\"><img src=\"https://img.shields.io/npm/dm/getmac.svg\" alt=\"NPM downloads\" /></a></span>\n<br class=\"badge-separator\" />\n<span class=\"badge-githubsponsors\"><a href=\"https://github.com/sponsors/balupton\" title=\"Donate to this project using GitHub Sponsors\"><img src=\"https://img.shields.io/badge/github-donate-yellow.svg\" alt=\"GitHub Sponsors donate button\" /></a></span>\n<span class=\"badge-thanksdev\"><a href=\"https://thanks.dev/u/gh/bevry\" title=\"Donate to this project using ThanksDev\"><img src=\"https://img.shields.io/badge/thanksdev-donate-yellow.svg\" alt=\"ThanksDev donate button\" /></a></span>\n<span class=\"badge-patreon\"><a href=\"https://patreon.com/bevry\" title=\"Donate to this project using Patreon\"><img src=\"https://img.shields.io/badge/patreon-donate-yellow.svg\" alt=\"Patreon donate button\" /></a></span>\n<span class=\"badge-liberapay\"><a href=\"https://liberapay.com/bevry\" title=\"Donate to this project using Liberapay\"><img src=\"https://img.shields.io/badge/liberapay-donate-yellow.svg\" alt=\"Liberapay donate button\" /></a></span>\n<span class=\"badge-buymeacoffee\"><a href=\"https://buymeacoffee.com/balupton\" title=\"Donate to this project using Buy Me A Coffee\"><img src=\"https://img.shields.io/badge/buy%20me%20a%20coffee-donate-yellow.svg\" alt=\"Buy Me A Coffee donate button\" /></a></span>\n<span class=\"badge-opencollective\"><a href=\"https://opencollective.com/bevry\" title=\"Donate to this project using Open Collective\"><img src=\"https://img.shields.io/badge/open%20collective-donate-yellow.svg\" alt=\"Open Collective donate button\" /></a></span>\n<span class=\"badge-crypto\"><a href=\"https://bevry.me/crypto\" title=\"Donate to this project using Cryptocurrency\"><img src=\"https://img.shields.io/badge/crypto-donate-yellow.svg\" alt=\"crypto donate button\" /></a></span>\n<span class=\"badge-paypal\"><a href=\"https://bevry.me/paypal\" title=\"Donate to this project using Paypal\"><img src=\"https://img.shields.io/badge/paypal-donate-yellow.svg\" alt=\"PayPal donate button\" /></a></span>\n<br class=\"badge-separator\" />\n<span class=\"badge-discord\"><a href=\"https://discord.gg/nQuXddV7VP\" title=\"Join this project's community on Discord\"><img src=\"https://img.shields.io/discord/1147436445783560193?logo=discord&amp;label=discord\" alt=\"Discord server badge\" /></a></span>\n<span class=\"badge-twitch\"><a href=\"https://www.twitch.tv/balupton\" title=\"Join this project's community on Twitch\"><img src=\"https://img.shields.io/twitch/status/balupton?logo=twitch\" alt=\"Twitch community badge\" /></a></span>\n\n<!-- /BADGES -->\n\n<!-- DESCRIPTION/ -->\n\nGet the MAC address of the current machine you are on.\n\n<!-- /DESCRIPTION -->\n\n\nThis library will not run in web browsers / on the client-side / in webpack / in browserify / in angular / in react / in jQuery / in HTML. It will only run on Node.js environments, which the web browser is not.\n\n## Usage\n\n[Complete API Documentation.](http://master.getmac.bevry.surge.sh/docs/)\n\n### CLI\n\nInstall globally `npm install -g getmac`, then run with `getmac-node`\n\n### API\n\nInstall locally `npm install --save getmac`, then use like so:\n\n```javascript\nimport getMAC, { isMAC } from 'getmac'\n\n// Fetch the computer's MAC address\nconsole.log(getMAC())\n\n// Fetch the computer's MAC address for a specific interface\nconsole.log(getMAC('eth0'))\n\n// Validate that an address is a MAC address\nif (isMAC('e4:ce:8f:5b:a7:fc')) {\n    console.log('valid MAC')\n} else {\n    console.log('invalid MAC')\n}\n```\n\n### Advanced\n\nIf you want to do advanced filtering, use [`os.networkInterfaces()`](https://nodejs.org/dist/latest-v12.x/docs/api/os.html#os_os_networkinterfaces) instead.\n\n<!-- INSTALL/ -->\n\n## Install\n\n### [npm](https://npmjs.com \"npm is a package manager for javascript\")\n\n-   Install: `npm install --save getmac`\n-   Import: `import pkg from ('getmac')`\n-   Require: `const pkg = require('getmac').default`\n\n### [Deno](https://deno.land \"Deno is a secure runtime for JavaScript and TypeScript, it is an alternative for Node.js\")\n\n``` typescript\nimport pkg from 'https://unpkg.com/getmac@^6.6.0/edition-deno/index.ts'\n```\n### [Editions](https://editions.bevry.me \"Editions are the best way to produce and consume packages you care about.\")\n\nThis package is published with the following editions:\n-   `getmac/source/index.ts` is [TypeScript](https://www.typescriptlang.org/ \"TypeScript is a typed superset of JavaScript that compiles to plain JavaScript.\") source code with [Import](https://babeljs.io/docs/learn-es2015/#modules \"ECMAScript Modules\") for modules\n-   `getmac` aliases `getmac/edition-es2022/index.js`\n-   `getmac/edition-es2022/index.js` is [TypeScript](https://www.typescriptlang.org/ \"TypeScript is a typed superset of JavaScript that compiles to plain JavaScript.\") compiled against [ES2022](https://en.wikipedia.org/wiki/ES2022 \"ECMAScript 2022\") for [Node.js](https://nodejs.org \"Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine\") 8 || 10 || 12 || 14 || 16 || 18 || 20 || 21 with [Require](https://nodejs.org/dist/latest-v5.x/docs/api/modules.html \"Node/CJS Modules\") for modules\n-   `getmac/edition-es2022-esm/index.js` is [TypeScript](https://www.typescriptlang.org/ \"TypeScript is a typed superset of JavaScript that compiles to plain JavaScript.\") compiled against [ES2022](https://en.wikipedia.org/wiki/ES2022 \"ECMAScript 2022\") for [Node.js](https://nodejs.org \"Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine\") 12 || 14 || 16 || 18 || 20 || 21 with [Import](https://babeljs.io/docs/learn-es2015/#modules \"ECMAScript Modules\") for modules\n-   `getmac/edition-types/index.d.ts` is [TypeScript](https://www.typescriptlang.org/ \"TypeScript is a typed superset of JavaScript that compiles to plain JavaScript.\") compiled Types with [Import](https://babeljs.io/docs/learn-es2015/#modules \"ECMAScript Modules\") for modules\n-   `getmac/edition-deno/index.ts` is [TypeScript](https://www.typescriptlang.org/ \"TypeScript is a typed superset of JavaScript that compiles to plain JavaScript.\") source code made to be compatible with [Deno](https://deno.land \"Deno is a secure runtime for JavaScript and TypeScript, it is an alternative to Node.js\")\n\n<!-- /INSTALL -->\n\n<!-- HISTORY/ -->\n\n## History\n\n[Discover the release history by heading on over to the `HISTORY.md` file.](https://github.com/bevry/getmac/blob/HEAD/HISTORY.md#files)\n\n<!-- /HISTORY -->\n\n<!-- BACKERS/ -->\n\n## Backers\n\n### Code\n\n[Discover how to contribute via the `CONTRIBUTING.md` file.](https://github.com/bevry/getmac/blob/HEAD/CONTRIBUTING.md#files)\n\n#### Authors\n\n-   [Benjamin Lupton](https://balupton.com) — Accelerating collaborative wisdom.\n\n#### Maintainers\n\n-   [Benjamin Lupton](https://balupton.com) — Accelerating collaborative wisdom.\n\n#### Contributors\n\n-   [Benjamin Lupton](https://github.com/balupton) — [view contributions](https://github.com/bevry/getmac/commits?author=balupton \"View the GitHub contributions of Benjamin Lupton on repository bevry/getmac\")\n-   [Benoit Sepe](https://github.com/benoitsepe) — [view contributions](https://github.com/bevry/getmac/commits?author=benoitsepe \"View the GitHub contributions of Benoit Sepe on repository bevry/getmac\")\n-   [Gustavo Costa Neves](https://github.com/guhcostan) — [view contributions](https://github.com/bevry/getmac/commits?author=guhcostan \"View the GitHub contributions of Gustavo Costa Neves on repository bevry/getmac\")\n-   [Isaac Huang](https://github.com/caasi) — [view contributions](https://github.com/bevry/getmac/commits?author=caasi \"View the GitHub contributions of Isaac Huang on repository bevry/getmac\")\n-   [Jan Pilzer](https://github.com/Hirse) — [view contributions](https://github.com/bevry/getmac/commits?author=Hirse \"View the GitHub contributions of Jan Pilzer on repository bevry/getmac\")\n-   [Stephen Brown II](https://github.com/StephenBrown2) — [view contributions](https://github.com/bevry/getmac/commits?author=StephenBrown2 \"View the GitHub contributions of Stephen Brown II on repository bevry/getmac\")\n-   [ted shroyer](https://github.com/tedshroyer) — [view contributions](https://github.com/bevry/getmac/commits?author=tedshroyer \"View the GitHub contributions of ted shroyer on repository bevry/getmac\")\n-   [zboszor](https://github.com/zboszor) — [view contributions](https://github.com/bevry/getmac/commits?author=zboszor \"View the GitHub contributions of zboszor on repository bevry/getmac\")\n\n### Finances\n\n<span class=\"badge-githubsponsors\"><a href=\"https://github.com/sponsors/balupton\" title=\"Donate to this project using GitHub Sponsors\"><img src=\"https://img.shields.io/badge/github-donate-yellow.svg\" alt=\"GitHub Sponsors donate button\" /></a></span>\n<span class=\"badge-thanksdev\"><a href=\"https://thanks.dev/u/gh/bevry\" title=\"Donate to this project using ThanksDev\"><img src=\"https://img.shields.io/badge/thanksdev-donate-yellow.svg\" alt=\"ThanksDev donate button\" /></a></span>\n<span class=\"badge-patreon\"><a href=\"https://patreon.com/bevry\" title=\"Donate to this project using Patreon\"><img src=\"https://img.shields.io/badge/patreon-donate-yellow.svg\" alt=\"Patreon donate button\" /></a></span>\n<span class=\"badge-liberapay\"><a href=\"https://liberapay.com/bevry\" title=\"Donate to this project using Liberapay\"><img src=\"https://img.shields.io/badge/liberapay-donate-yellow.svg\" alt=\"Liberapay donate button\" /></a></span>\n<span class=\"badge-buymeacoffee\"><a href=\"https://buymeacoffee.com/balupton\" title=\"Donate to this project using Buy Me A Coffee\"><img src=\"https://img.shields.io/badge/buy%20me%20a%20coffee-donate-yellow.svg\" alt=\"Buy Me A Coffee donate button\" /></a></span>\n<span class=\"badge-opencollective\"><a href=\"https://opencollective.com/bevry\" title=\"Donate to this project using Open Collective\"><img src=\"https://img.shields.io/badge/open%20collective-donate-yellow.svg\" alt=\"Open Collective donate button\" /></a></span>\n<span class=\"badge-crypto\"><a href=\"https://bevry.me/crypto\" title=\"Donate to this project using Cryptocurrency\"><img src=\"https://img.shields.io/badge/crypto-donate-yellow.svg\" alt=\"crypto donate button\" /></a></span>\n<span class=\"badge-paypal\"><a href=\"https://bevry.me/paypal\" title=\"Donate to this project using Paypal\"><img src=\"https://img.shields.io/badge/paypal-donate-yellow.svg\" alt=\"PayPal donate button\" /></a></span>\n\n#### Sponsors\n\n-   [Andrew Nesbitt](https://nesbitt.io) — Software engineer and researcher\n-   [Balsa](https://balsa.com) — We're Balsa, and we're building tools for builders.\n-   [Codecov](https://codecov.io) — Empower developers with tools to improve code quality and testing.\n-   [Poonacha Medappa](https://poonachamedappa.com)\n-   [Rob Morris](https://github.com/Rob-Morris)\n-   [Sentry](https://sentry.io) — Real-time crash reporting for your web apps, mobile apps, and games.\n-   [Syntax](https://syntax.fm) — Syntax Podcast\n\n#### Donors\n\n-   [Andrew Nesbitt](https://nesbitt.io)\n-   [Armen Mkrtchian](https://mogoni.dev)\n-   [Balsa](https://balsa.com)\n-   [Chad](https://opencollective.com/chad8)\n-   [Codecov](https://codecov.io)\n-   [dr.dimitru](https://veliovgroup.com)\n-   [Elliott Ditman](https://elliottditman.com)\n-   [entroniq](https://gitlab.com/entroniq)\n-   [GitHub](https://github.com/about)\n-   [Hunter Beast](https://cryptoquick.com)\n-   [Jean-Luc Geering](https://github.com/jlgeering)\n-   [Michael Duane Mooring](https://mdm.cc)\n-   [Michael Harry Scepaniak](https://michaelscepaniak.com)\n-   [Mohammed Shah](https://github.com/smashah)\n-   [Mr. Henry](https://mrhenry.be)\n-   [Nermal](https://arjunaditya.vercel.app)\n-   [Pleo](https://pleo.io)\n-   [Poonacha Medappa](https://poonachamedappa.com)\n-   [Rob Morris](https://github.com/Rob-Morris)\n-   [Robert de Forest](https://github.com/rdeforest)\n-   [Sentry](https://sentry.io)\n-   [ServieJS](https://github.com/serviejs)\n-   [Skunk Team](https://skunk.team)\n-   [Syntax](https://syntax.fm)\n-   [WriterJohnBuck](https://github.com/WriterJohnBuck)\n\n<!-- /BACKERS -->\n\n<!-- LICENSE/ -->\n\n## License\n\nUnless stated otherwise all works are:\n\n-   Copyright &copy; [Benjamin Lupton](https://balupton.com)\n\nand licensed under:\n\n-   [Artistic License 2.0](http://spdx.org/licenses/Artistic-2.0.html)\n\n<!-- /LICENSE -->","users":{}}