base-convert-int-array
Version:
Converts arrays of integers from one base to another. Uses an O(N²) algorithm.
48 lines (47 loc) • 1.08 kB
JSON
{
"name": "base-convert-int-array",
"version": "1.0.1",
"description": "Converts arrays of integers from one base to another. Uses an O(N²) algorithm.",
"engine": {
"node": ">=6 <7 || >=8 <9 || >=10"
},
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"lint": "as-i-preach",
"test": "as-i-preach && nyc ava"
},
"repository": {
"type": "git",
"url": "git+https://github.com/novemberborn/base-convert-int-array.git"
},
"keywords": [
"base62",
"base36",
"buffer",
"binary",
"conversion",
"base"
],
"author": "Mark Wubben (https://novemberborn.net/)",
"license": "ISC",
"bugs": {
"url": "https://github.com/novemberborn/base-convert-int-array/issues"
},
"homepage": "https://github.com/novemberborn/base-convert-int-array#readme",
"devDependencies": {
"@novemberborn/as-i-preach": "^11.0.0",
"ava": "1.0.0-beta.8",
"nyc": "^13.0.1"
},
"nyc": {
"reporter": [
"html",
"lcov",
"text"
]
},
"standard-engine": "@novemberborn/as-i-preach"
}