UNPKG

facturajs

Version:

Comunicación con los web services de AFIP utilizando nodejs.

61 lines (60 loc) 1.49 kB
{ "name": "facturajs", "description": "Comunicación con los web services de AFIP utilizando nodejs.", "author": "Emilio Astarita", "licence": "MIT", "version": "0.3.1", "engines": { "node": ">=6.0.0" }, "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "prettier": "prettier --write \"src/**/*.{md,json,ts}\"", "clean": "rm -rf dist/*", "prepare": "yarn prettier; yarn clean ; yarn build", "build": "yarn run type:dts && yarn run build:main", "build:main": "swc ./src -d ./dist", "type:dts": "tsc --emitDeclarationOnly --project tsconfig.build.json" }, "repository": { "type": "git", "url": "git+https://github.com/emilioastarita/facturajs.git" }, "bugs": { "url": "git+https://github.com/emilioastarita/facturajs/issues" }, "files": [ "dist/" ], "keywords": [ "afip", "factura", "factura electrónica", "wsfe", "wsfev1", "web service", "soap", "nodejs" ], "dependencies": { "debug": "^4.3.4", "moment": "^2.29.4", "node-forge": "^1.3.1", "ntp-time-sync": "^0.3.0", "soap": "^1.0.0", "source-map-support": "^0.5.21", "uniqid": "^5.4.0", "xml2js": "^0.6.0" }, "devDependencies": { "@swc/cli": "^0.1.62", "@swc/core": "^1.3.69", "@types/debug": "^4.1.8", "@types/node-forge": "^1.3.3", "@types/uniqid": "^5.3.2", "@types/xml2js": "^0.4.11", "prettier": "^3.0.0", "typescript": "^5.1.6" } }