calcula-rfc
Version:
Librería para calcular el RFC (Registro Federal de Contribuyentes) mexicano con homoclave de personas físicas
82 lines (81 loc) • 1.93 kB
JSON
{
"name": "calcula-rfc",
"version": "2.0.9",
"type": "module",
"description": "Librería para calcular el RFC (Registro Federal de Contribuyentes) mexicano con homoclave de personas físicas",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "microbundle --no-compress",
"build:prod": "microbundle",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"prepare": "npm run build",
"prepublishOnly": "npm run test && npm run lint && npm run build:prod"
},
"keywords": [
"rfc",
"mexico",
"registro-federal-contribuyentes",
"homoclave",
"sat",
"fiscal",
"validacion",
"calculo",
"persona-fisica",
"contribuyente"
],
"author": "Gerardo Lucero",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/GerardoLucero/calcula-rfc.git"
},
"bugs": {
"url": "https://github.com/GerardoLucero/calcula-rfc/issues"
},
"homepage": "https://github.com/GerardoLucero/calcula-rfc#readme",
"engines": {
"node": ">=14.0.0"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@eslint/js": "^8.57.0",
"babel-jest": "^29.7.0",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"microbundle": "^0.15.1"
},
"dependencies": {
"dayjs": "^1.11.13"
},
"jest": {
"testEnvironment": "node",
"collectCoverageFrom": [
"src/**/*.{js,ts}",
"!src/**/*.test.{js,ts}",
"!src/**/*.spec.{js,ts}"
],
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 80,
"lines": 80,
"statements": 80
}
},
"transform": {
"^.+\\.[jt]sx?$": "babel-jest"
}
}
}