@scottlexium/finpro
Version:
🚀 FinPro.js by Scott Lexium - The most comprehensive TypeScript library for financial data operations. Features 154+ currencies, 250+ countries, MongoDB-style queries, dual ESM/CommonJS support, and flag integration. Created by Scott Lexium for modern Ja
158 lines (157 loc) • 4.2 kB
JSON
{
"name": "@scottlexium/finpro",
"version": "2.1.0",
"description": "🚀 FinPro.js by Scott Lexium - The most comprehensive TypeScript library for financial data operations. Features 154+ currencies, 250+ countries, MongoDB-style queries, dual ESM/CommonJS support, and flag integration. Created by Scott Lexium for modern JavaScript/TypeScript developers.",
"main": "dist/index.cjs",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"exports": {
".": {
"import": "./dist/index.esm.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "npm run clean && npm run build:rollup",
"build:dev": "npm run clean && rollup -c",
"build:prod": "npm run clean && NODE_ENV=production rollup -c",
"build:rollup": "NODE_ENV=production rollup -c",
"build:watch": "rollup -c -w",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --ci --coverage --watchAll=false",
"type-check": "tsc --noEmit",
"type-check:watch": "tsc --noEmit --watch",
"clean": "rimraf dist",
"validate": "npm run type-check && npm run test:ci && npm run build:prod",
"commit": "cz",
"semantic-release": "semantic-release",
"prepare": "husky",
"prepublishOnly": "npm run validate",
"prepack": "npm run build:prod",
"release": "npm run validate && npm run semantic-release"
},
"keywords": [
"scott-lexium",
"scottlexium",
"finpro",
"finance",
"currency",
"country",
"financial-library",
"typescript",
"javascript-finance",
"nodejs-finance",
"fintech",
"query-builder",
"mongodb-style",
"localization",
"money",
"fiat",
"data-management",
"financial-data",
"geography",
"states",
"languages",
"flags",
"currency-formatting",
"monetary",
"forex",
"iso-codes",
"currency-codes",
"country-codes",
"currency-data",
"geography-data",
"esm",
"commonjs",
"dual-package",
"tree-shakeable",
"type-safe",
"performance-optimized",
"enterprise-ready",
"production-ready",
"financial-api",
"currency-conversion",
"country-data"
],
"author": {
"name": "Scott Lexium",
"url": "https://github.com/Scottlexium",
"email": "scott.lexium@example.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Scottlexium/finpro-issues.git"
},
"bugs": {
"url": "https://github.com/Scottlexium/finpro-issues/issues"
},
"homepage": "https://github.com/Scottlexium/finpro-issues#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^29.5.14",
"@types/node": "^20.19.4",
"@types/react": "^18.2.45",
"commitizen": "^4.3.1",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"husky": "^9.1.7",
"javascript-obfuscator": "^4.1.1",
"jest": "^29.7.0",
"lint-staged": "^16.1.2",
"rimraf": "^6.0.1",
"rollup": "^4.9.1",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-obfuscator": "^1.1.0",
"semantic-release": "^24.2.6",
"ts-jest": "^29.4.0",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
}
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"npm run type-check"
],
"*.{ts,tsx,js,jsx}": [
"npm run test -- --bail --findRelatedTests --passWithNoTests"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}