UNPKG

polish-utils

Version:

Lightweight library for extracting data and validating polish identification numbers such as PESEL or NIP

55 lines (54 loc) 1.39 kB
{ "name": "polish-utils", "description": "Lightweight library for extracting data and validating polish identification numbers such as PESEL or NIP", "version": "1.1.3", "main": "dist/cjs/index.js", "module": "dist/esm/index.js", "types": "dist/types/index.d.ts", "repository": { "type": "git", "url": "https://github.com/bartekczyz/polish-utils.git" }, "author": "Bartłomiej Czyż <bartek@czyz.it>", "keywords": [ "polish utils", "pesel", "pesel validation", "nip validation" ], "license": "MIT", "private": false, "scripts": { "build": "rimraf dist && rollup --config rollup.config.js", "prettier": "prettier --check src/**/*.ts", "lint": "yarn eslint src __tests__ && yarn prettier", "test": "jest", "test:watch": "jest --watch" }, "devDependencies": { "@bartekczyz/eslint-plugin": "^1.0.0", "@types/jest": "^27.0.2", "@wessberg/rollup-plugin-ts": "^1.3.14", "husky": "^7.0.4", "jest": "^27.3.1", "lint-staged": "^12.0.2", "np": "^7.5.0", "rimraf": "^3.0.2", "rollup": "^2.60.0", "rollup-plugin-terser": "^7.0.2", "ts-jest": "^27.0.7", "tslib": "^2.3.1", "typescript": "^4.5.2" }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "*.{js,ts}": [ "eslint --fix", "prettier --write" ] } }