UNPKG

ibankit

Version:

Validation, field extraction and creation of IBAN, BBAN, BIC numbers

89 lines (88 loc) 2.22 kB
{ "name": "ibankit", "version": "1.6.5", "description": "Validation, field extraction and creation of IBAN, BBAN, BIC numbers", "main": "./lib/cjs/index.js", "module": "./lib/esm/index.js", "types": "./lib/cjs/index.d.ts", "keywords": [ "IBAN", "BBAN", "BIC", "validator", "iban-validator", "ISO 3136-1 alpha-2" ], "files": [ "README.md", "LICENSE.txt", "lib", "src" ], "release": { "branches": [ "main" ], "plugins": [ "@semantic-release/commit-analyzer", "@semantic-release/npm", [ "@semantic-release/git", { "assets": [ "package.json" ], "message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}" } ] ] }, "scripts": { "format": "prettier --write \"src/**/*.ts\"", "lint": "eslint --ext .js,.jsx,.ts,.tsx src", "test": "jest", "build": "tsc", "prepublishOnly:esm": "tsc -p tsconfig.json", "prepublishOnly:cjs": "tsc -p tsconfig-cjs.json", "prepublishOnly": "npm run prepublishOnly:esm && npm run prepublishOnly:cjs" }, "repository": { "type": "git", "url": "https://github.com/koblas/ibankit.git" }, "author": "David Koblas", "license": "ISC", "homepage": "https://github.com/koblas/ibankit", "jest": { "moduleFileExtensions": [ "ts", "tsx", "js" ], "transform": { "^.+\\.(ts|tsx)$": "ts-jest" }, "testMatch": [ "/test/.*\\.(ts|tsx|js)$", "**/__tests__/**/*.+(ts|tsx|js)", "**/?(*.)+(spec|test).+(ts|tsx|js)" ] }, "devDependencies": { "@semantic-release/changelog": "^6.0.3", "@semantic-release/git": "^10.0.1", "@types/jest": "^29.5.4", "@typescript-eslint/eslint-plugin": "^6.5.0", "@typescript-eslint/parser": "^6.5.0", "eslint": "^8.48.0", "eslint-config-airbnb-base": "^15.0.0", "eslint-config-airbnb-typescript": "^17.1.0", "eslint-config-prettier": "^9.0.0", "eslint-plugin-import": "^2.28.1", "eslint-plugin-prettier": "^5.0.0", "jest": "^29.6.4", "prettier": "^3.0.3", "ts-jest": "^29.1.1", "typescript": "^5.2.2" } }