getmacaddress
Version:
Get the mac address of the current machine you are on
113 lines (112 loc) • 3.04 kB
JSON
{
"name": "getmacaddress",
"version": "1.2.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",
"---",
"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": "2013+ Bevry Pty Ltd <us@bevry.me> (http://bevry.me)",
"maintainers": [
"Benjamin Lupton <b@lupton.cc> (http://balupton.com)"
],
"contributors": [
"Benjamin Lupton <b@lupton.cc> (http://balupton.com)",
"Stephen Brown II <Stephen.Brown2@gmail.com> (https://github.com/StephenBrown2)",
"ted shroyer (https://github.com/tedshroyer)"
],
"bugs": {
"url": "https://github.com/bevry/getmac/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/bevry/getmac.git"
},
"engines": {
"node": ">=0.12"
},
"editions": [
{
"description": "Source + CoffeeScript + Require",
"entry": "src/lib/getmacaddress.coffee",
"directory": "src",
"syntaxes": [
"coffeescript",
"require"
]
},
{
"description": "CoffeeScript Compiled JavaScript + ES5 + Require",
"entry": "es5/lib/getmacaddress.js",
"directory": "es5",
"syntaxes": [
"javascript",
"es5",
"require"
]
}
],
"main": "es5/lib/getmacaddress.js",
"browser": "es5/lib/getmacaddress.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"
}
}