UNPKG

@lacussoft/cnpj-gen

Version:

Utility to generate CNPJ (Brazilian Business Tax ID)

69 lines (68 loc) 1.57 kB
{ "name": "@lacussoft/cnpj-gen", "version": "3.0.0", "description": "Utility to generate CNPJ (Brazilian Business Tax ID)", "license": "MIT", "author": { "name": "Julio L. Muller", "url": "https://github.com/juliolmuller" }, "keywords": [ "cnpj", "generate", "generator", "gerador", "gerar", "faker", "fake", "pt-br", "br" ], "homepage": "https://cnpj-utils.vercel.app/", "repository": { "type": "git", "url": "git+https://github.com/LacusSolutions/br-utils-js.git" }, "bugs": { "url": "https://github.com/LacusSolutions/br-utils-js/issues" }, "files": [ "dist/**/*", "README.md", "README.pt.md", "CHANGELOG.md", "LICENSE" ], "publishConfig": { "access": "public", "provenance": true }, "sideEffects": false, "types": "./dist/index.d.ts", "module": "./dist/index.mjs", "main": "./dist/index.cjs", "exports": { ".": { "import": { "types": "./dist/index.d.ts", "default": "./dist/index.mjs" }, "require": { "types": "./dist/index.d.cts", "default": "./dist/index.cjs" } } }, "scripts": { "build": "rollup --config", "type-check": "tsc", "lint": "bun run lint:ci --fix", "lint:ci": "eslint src/ tests/ rollup.config.mjs", "test": "bun run test:ci --coverage --coverage-reporter=lcov --coverage-dir=tests/__coverage__", "test:ci": "bun test --only-failures" }, "dependencies": { "@lacussoft/cnpj-dv": "1.0.0", "@lacussoft/utils": "1.0.0" } }