mt940parser/package.json
2024-07-06 15:50:52 +02:00

57 lines
1.3 KiB
JSON

{
"name": "@fin.cx/mt940parser",
"version": "1.1.0",
"private": false,
"description": "A parser to process and extract statements from MT940 format files, commonly used by banks for electronic account statements.",
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"type": "module",
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/ --web)",
"build": "(tsbuild --web --allowimplicitany)",
"buildDocs": "(tsdoc)"
},
"devDependencies": {
"@git.zone/tsbuild": "^2.1.25",
"@git.zone/tsbundle": "^2.0.5",
"@git.zone/tsrun": "^1.2.39",
"@git.zone/tstest": "^1.0.84",
"@push.rocks/tapbundle": "^5.0.3",
"@push.rocks/tapbundle-fs": "^1.0.4",
"@types/node": "^20.9.0"
},
"browserslist": [
"last 1 chrome versions"
],
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
],
"dependencies": {
"mt940-js": "^1.0.0"
},
"keywords": [
"MT940",
"file parser",
"financial statements",
"banking",
"finance",
"TypeScript",
"electronic account statements",
"data extraction",
"custom processing",
"file handling",
"error handling"
]
}