ofx-data-extractor
Version:
A module written in TypeScript that provides a utility to extract data from an OFX file in Node.js and Browser
80 lines (79 loc) • 2.34 kB
JSON
{
"name": "ofx-data-extractor",
"version": "1.5.0",
"keywords": [
"ofx",
"financial",
"ofx-js",
"ofx-ts",
"ofx to json",
"export ofx",
"ofx json",
"ofx manipulation",
"banking",
"parser",
"data-extraction",
"extract ofx",
"typescript",
"utility",
"ofx-file",
"data-formatting",
"ofx node",
"ofx js",
"ofx ts",
"ofx extractor",
"ofx browser",
"open financial exchange"
],
"author": "Fábio Pereira França",
"repository": {
"type": "git",
"url": "https://github.com/Fabiopf02/ofx-data-extractor.git"
},
"bugs": {
"url": "https://github.com/Fabiopf02/ofx-data-extractor/issues"
},
"license": "MIT",
"sideEffects": false,
"description": "A module written in TypeScript that provides a utility to extract data from an OFX file in Node.js and Browser",
"main": "dist/umd/bundle.min.js",
"module": "dist/esm/index.min.js",
"typings": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/esm/index.min.js",
"require": "./dist/umd/bundle.min.js",
"default": "./dist/esm/index.min.js"
}
},
"files": [
"dist/**/*"
],
"scripts": {
"test": "jest tests/*.spec.ts --config jest.config.js",
"test:coverage": "jest tests/*.spec.ts --coverage --config jest.config.js",
"build": "rollup --config",
"build:analyze": "npm run build && node -e \"const fs=require('fs');const z=require('zlib');const files=['dist/esm/index.min.js','dist/umd/bundle.min.js'];for(const f of files){const b=fs.readFileSync(f);const gz=z.gzipSync(b);console.log(f, 'raw='+b.length+'B', 'gzip='+gz.length+'B');}\"",
"start": "node dist/index.js",
"format": "prettier --write \"src/**/*.ts\"",
"prepublish": "npm run build",
"lint": "tslint -p tsconfig.json"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.8",
"@rollup/plugin-node-resolve": "^15.3.1",
"@rollup/plugin-typescript": "^10.0.1",
"@types/jest": "^29.5.14",
"@types/node": "^18.19.130",
"esbuild": "^0.25.12",
"jest": "^29.7.0",
"prettier": "^2.8.8",
"rollup": "^3.30.0",
"rollup-plugin-esbuild": "^5.0.0",
"ts-jest": "^29.4.6",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.9.5"
}
}