UNPKG

camtjs

Version:

JS package to work with CAMT transactions

64 lines (63 loc) 1.94 kB
{ "name": "camtjs", "version": "0.0.7", "description": "JS package to work with CAMT transactions", "scripts": { "prebuild": "rimraf dist", "build": "npm run build:esm & npm run build:cjs", "postbuild": "hybrid-package-json --target-esm dist/esm --target-cjs dist/cjs", "build:esm": "tsc -p tsconfig.esm.json && tsc-esm-fix --target=dist/esm", "build:cjs": "tsc -p tsconfig.cjs.json", "lint": "eslint src --ext .ts", "test": "jest", "test:cov": "jest --coverage", "prerelease": "npm run build", "release": "npm login && npm publish", "postrelease": "git push && git push --tags" }, "type": "module", "main": "dist/cjs/index.js", "module": "dist/esm/index.js", "types": "dist/types/index.d.ts", "files": [ "dist" ], "exports": { "import": "./dist/esm/index.js", "require": "./dist/cjs/index.js" }, "repository": { "type": "git", "url": "git+https://github.com/proohit/camtjs.git" }, "keywords": [ "camt", "js" ], "author": "proohit", "license": "MIT", "bugs": { "url": "https://github.com/proohit/camtjs/issues" }, "homepage": "https://github.com/proohit/camtjs#readme", "devDependencies": { "@types/jest": "^29.2.2", "@types/xml2js": "^0.4.11", "@typescript-eslint/eslint-plugin": "^5.42.1", "@typescript-eslint/parser": "^5.42.1", "eslint": "^8.27.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-prettier": "^4.2.1", "hybrid-package-json": "^0.0.1", "jest": "^29.3.1", "npm-bump": "^0.0.32", "prettier": "^2.7.1", "rimraf": "^3.0.2", "ts-jest": "^29.0.3", "tsc-esm-fix": "^2.20.5", "typescript": "^4.8.4" }, "dependencies": { "xml2js": "^0.4.23" } }