is-valid-account-number
Version:
Validates Norwegian bank account numbers
48 lines (47 loc) • 1.29 kB
JSON
{
"name": "is-valid-account-number",
"description": "Validates Norwegian bank account numbers",
"version": "3.0.2",
"license": "MIT",
"author": {
"name": "Geir Gåsodden",
"email": "geir.gasodden@pythonia.no",
"url": "https://github.com/zrrrzzt"
},
"main": "index.js",
"files": [
"index.js"
],
"engines": {
"node": ">=14.18.1"
},
"scripts": {
"test": "standard && tap --reporter=spec test/**/*.js",
"test-offline": "standard && tap --reporter=spec test/**/*.js",
"coverage": "tap test/**/*.js --coverage",
"coveralls": "tap --cov --coverage-report=lcov test/**/*.js && cat coverage/lcov.info | coveralls",
"standard-fix": "standard --fix",
"refresh": "rm -rf node_modules && rm package-lock.json && npm install"
},
"keywords": [
"validation",
"account number",
"Norwegian"
],
"repository": {
"type": "git",
"url": "git+https://github.com/zrrrzzt/is-valid-account-number.git"
},
"bugs": {
"url": "https://github.com/zrrrzzt/is-valid-account-number/issues"
},
"homepage": "https://github.com/zrrrzzt/is-valid-account-number#readme",
"devDependencies": {
"coveralls": "3.1.1",
"standard": "16.0.4",
"tap": "15.0.10"
},
"dependencies": {
"checkdigit": "1.1.1"
}
}