UNPKG

@nodecfdi/cfdiutils-core

Version:
97 lines 3.3 kB
{ "name": "@nodecfdi/cfdiutils-core", "version": "0.7.1", "description": "Core of CfdiUtils", "keywords": [ "cfdi", "utils", "sat", "cadena", "origen", "xml", "certificado", "tfd", "downloader" ], "private": false, "author": "OcelotlStudio <contacto@ocelotlstudio.com>", "license": "MIT", "type": "module", "main": "./dist/prod/cfdiutils-core.cjs", "module": "./dist/prod/cfdiutils-core.modern.js", "exports": { "require": "./dist/prod/cfdiutils-core.cjs", "development": "./dist/dev/cfdiutils-core.modern.js", "default": "./dist/prod/cfdiutils-core.modern.js" }, "types": "dist/types/index.d.ts", "files": [ "dist" ], "repository": "https://github.com/nodecfdi/cfdiutils-core", "bugs": { "url": "https://github.com/nodecfdi/cfdiutils-core/issues" }, "homepage": "https://github.com/nodecfdi/cfdiutils-core", "devDependencies": { "@babel/core": "^7.18.6", "@babel/preset-env": "^7.18.6", "@babel/preset-typescript": "^7.18.6", "@changesets/cli": "^2.23.1", "@commitlint/cli": "^17.0.3", "@commitlint/config-conventional": "^17.0.3", "@types/jest": "^28.1.5", "@types/jsrsasign": "^10.5.1", "@types/luxon": "^2.3.2", "@types/node": "^18.0.3", "@types/temp": "^0.9.1", "@typescript-eslint/eslint-plugin": "^5.30.6", "@typescript-eslint/parser": "^5.30.6", "@xmldom/xmldom": "^0.8.2", "babel-plugin-dev-expression": "^0.2.3", "babel-plugin-transform-define": "^2.0.1", "cross-env": "^7.0.3", "eslint": "^8.19.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-jest": "^26.5.3", "eslint-plugin-prettier": "^4.2.1", "eslint-plugin-promise": "^6.0.0", "eslint-plugin-tsdoc": "^0.2.16", "husky": "^8.0.1", "jest": "^28.1.3", "jest-mock-console": "^2.0.0", "jest-watch-typeahead": "^2.0.0", "lint-staged": "^13.0.3", "microbundle": "^0.15.0", "prettier": "^2.7.1", "shx": "^0.3.4", "typedoc": "^0.23.7", "typedoc-theme-hierarchy": "^3.0.0", "typescript": "^4.7.4", "zx": "^7.0.7" }, "dependencies": { "@nodecfdi/cfdiutils-common": "^1.2.1", "@nodecfdi/credentials": "^1.3.0", "@nodecfdi/xml-resource-retriever": "^1.1.0", "temp": "^0.9.4", "ts-mixer": "^6.0.1" }, "engines": { "node": ">= 14.0.0" }, "scripts": { "lint": "eslint --fix \"src/**/\"", "lint:check": "eslint \"src/**/\"", "lint:ci": "pnpm lint:check", "test": "jest --verbose --runInBand --coverage", "test:watch": "jest --watch", "test:ci": "jest --runInBand --ci", "test:ci:coverage": "jest --runInBand --ci --coverage --coverageDirectory=coverage", "build:prod": "cross-env NODE_ENV=production microbundle --tsconfig ./tsconfig.json --target node --format modern,cjs --output dist/prod/cfdiutils-core.js", "build:dev": "cross-env NODE_ENV=development microbundle --define process.env.NODE_ENV=development --tsconfig ./tsconfig.json --target node --generateTypes false --format modern --output dist/dev/cfdiutils-core.js", "build": "rm -rf ./dist && pnpm build:dev && pnpm build:prod", "gen:docs": "rm -rf ./docs && typedoc --options typedoc.cjs", "release": "pnpm run prepublishOnly && pnpm changeset publish" } }