gcd
Version:
compute the greatest common divisor using euclid's algorithm
54 lines (53 loc) • 1.09 kB
JSON
{
"name": "gcd",
"version": "0.0.1",
"description": "compute the greatest common divisor using euclid's algorithm",
"main": "index.js",
"directories": {
"example": "example",
"test": "test"
},
"devDependencies": {
"tape": "^2.13.1"
},
"scripts": {
"test": "tape test/*.js"
},
"repository": {
"type": "git",
"url": "git://github.com/substack/node-gcd.git"
},
"homepage": "https://github.com/substack/node-gcd",
"keywords": [
"gcd",
"divisor",
"math",
"maths",
"mathematics",
"euclid"
],
"author": {
"name": "James Halliday",
"email": "mail@substack.net",
"url": "http://substack.net"
},
"license": "MIT",
"testling": {
"files": "test/*.js",
"browsers": [
"ie/8..latest",
"firefox/15",
"firefox/latest",
"firefox/nightly",
"chrome/15",
"chrome/latest",
"chrome/canary",
"opera/12..latest",
"opera/next",
"safari/5.1..latest",
"ipad/6.0..latest",
"iphone/6.0..latest",
"android-browser/4.2..latest"
]
}
}