UNPKG

cashify

Version:

Lightweight currency conversion library, successor of money.js

91 lines (90 loc) 2.22 kB
{ "name": "cashify", "version": "3.0.1", "description": "Lightweight currency conversion library, successor of money.js", "main": "dist/index.js", "type": "module", "types": "dist/index.d.ts", "files": [ "dist/**/*" ], "author": "Antoni Kępiński <antoni@kepinski.ch> (https://www.kepinski.ch)", "bugs": { "url": "https://github.com/xxczaki/cashify/issues" }, "scripts": { "prebuild": "del-cli dist", "build": "tsc", "test": "xo && c8 --reporter=lcov ava", "prepublishOnly": "npm run build" }, "engines": { "node": ">=14" }, "license": "MIT", "repository": "xxczaki/cashify", "homepage": "https://github.com/xxczaki/cashify", "funding": { "type": "opencollective", "url": "https://opencollective.com/cashify" }, "keywords": [ "cashify", "cash", "moneyjs", "money.js", "money", "conversion", "exchange", "currency-exchange", "exchange-rates", "open-exchange-rates", "fixer", "currencies", "convert-currency-rates", "replacement", "convert-currencies", "typescript", "money-conversion" ], "devDependencies": { "@sindresorhus/tsconfig": "^2.0.0", "@types/node": "^16.11.6", "ava": "^3.15.0", "big.js": "^6.1.1", "c8": "^7.10.0", "coveralls": "^3.1.1", "del-cli": "^4.0.1", "ts-node": "^10.4.0", "typescript": "^4.4.4", "xo": "^0.46.4" }, "sideEffects": false, "ava": { "extensions": { "ts": "module" }, "nonSemVerExperiments": { "configurableModuleFormat": true }, "nodeArguments": [ "--loader=ts-node/esm" ] }, "xo": { "rules": { "@typescript-eslint/naming-convention": "off" } }, "dependencies": { "@types/big.js": "^6.1.2" }, "peerDependencies": { "big.js": ">=6.1.1" }, "peerDependenciesMeta": { "big.js": { "optional": true } } }