@aregnet/iban-val
Version:
IBAN validation package
59 lines (58 loc) • 1.67 kB
JSON
{
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage --no-cache --debug",
"lint": "eslint ./src",
"build": "rimraf dist && rollup -c",
"prepare": "husky install",
"release:dry": "release-it --dry-run --no-npm",
"release": "npm run lint && npm run test && npm run build && release-it"
},
"repository": {
"type": "git",
"url": "https://github.com/aregnet/iban-val"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"unpkg": "dist/iban-val.min.js",
"version": "1.2.1",
"name": "@aregnet/iban-val",
"description": "IBAN validation package",
"author": "Alexander Regnet <alex@wbdv.eu>",
"keywords": [
"IBAN",
"IBAN Validation"
],
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^24.1.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-terser": "^0.4.1",
"@types/chai": "^4.3.5",
"@types/eslint": "^8.37.0",
"@types/jest": "^29.5.1",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"browserify": "^17.0.0",
"chai": "^4.3.7",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^13.2.2",
"prettier": "2.8.8",
"release-it": "^15.10.3",
"rimraf": "^5.0.0",
"rollup": "^3.21.6",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-esbuild": "^5.0.0",
"rollup-plugin-license": "^3.0.1",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}