cpf-utils
Version:
Utility functions to deal with CPF data (Brazilian personal ID)
78 lines (77 loc) • 1.94 kB
JSON
{
"name": "cpf-utils",
"version": "2.0.2",
"description": "Utility functions to deal with CPF data (Brazilian personal ID)",
"license": "MIT",
"author": {
"name": "Julio L. Muller",
"url": "https://github.com/juliolmuller"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"keywords": [
"cpf",
"validar",
"validador",
"validate",
"validation",
"formatar",
"format",
"gerar",
"gerador",
"generate",
"generator",
"pt-br",
"br"
],
"repository": {
"type": "git",
"url": "git+https://github.com/LacusSolutions/br-utils-js.git"
},
"bugs": {
"url": "https://github.com/LacusSolutions/br-utils-js/issues"
},
"homepage": "https://cpf-utils.vercel.app/",
"main": "build/index.cjs",
"types": "build/index.d.ts",
"exports": {
".": {
"types": "./build/index.d.ts",
"require": {
"default": "./build/index.cjs"
},
"import": {
"default": "./build/index.mjs"
}
}
},
"scripts": {
"build": "rollup --config",
"type-check": "tsc --noEmit",
"lint": "eslint --fix src/ tests/ rollup.config.mjs",
"pretest": "bun run build --silent",
"test": "bun test --coverage --coverage-reporter=lcov --coverage-dir=tests/__coverage__",
"test:ci": "bun test"
},
"dependencies": {
"@lacussoft/cpf-fmt": "^2.0.2",
"@lacussoft/cpf-gen": "^2.0.2",
"@lacussoft/cpf-val": "^2.0.2"
},
"devDependencies": {
"@babel/preset-env": "^7.28.5",
"@rollup/plugin-babel": "^6.1.0",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "~0.4.4",
"@rollup/plugin-typescript": "^12.3.0",
"@types/node": "^22.19.1",
"rollup": "^4.53.3",
"rollup-plugin-delete": "^3.0.1",
"rollup-plugin-dts": "^6.3.0",
"rollup-plugin-esbuild": "^6.2.1",
"typescript": "^5.9.3"
}
}