@hublaw/ofx-parser
Version:
A tool that converts financial data from OFX to JS Object.
85 lines (84 loc) • 2.32 kB
JSON
{
"name": "@hublaw/ofx-parser",
"version": "1.1.0",
"description": "A tool that converts financial data from OFX to JS Object.",
"author": "Gustavo Lopes",
"license": "MIT",
"keywords": [
"TypeScript",
"JavaScript",
"Open Financial Exchange",
"OFX"
],
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/hublawbr/ofx-parser.git"
},
"homepage": "https://github.com/hublawbr/ofx-parser#readme",
"main": "dist/main.js",
"module": "dist/main.es.js",
"jsnext:main": "dist/index.es.js",
"typings": "dist/index.d.ts",
"scripts": {
"prebuild": "rimraf dist",
"build": "rollup -c",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "tsc-watch --onSuccess \"node ./dist/examples/index.js\"",
"dev": "tsc-watch --onSuccess \"node ./dist/examples/example.js\"",
"lint": "tslint -p tsconfig.json",
"test": "jest",
"test:ci": "npm run test:cov -- --runInBand --ci --logHeapUsage",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"prepublishOnly": "yarn build"
},
"dependencies": {
"date-fns": "^2.9.0",
"xml2js": "^0.4.23"
},
"devDependencies": {
"prompts": "^2.3.1",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"@types/jest": "25.1.1",
"@types/node": "^13.1.6",
"@types/prompts": "^2.0.3",
"jest": "^25.0.0",
"prettier": "^1.18.2",
"rimraf": "^3.0.0",
"rollup": "^1.31.1",
"rollup-plugin-typescript2": "^0.26.0",
"ts-jest": "25.1.0",
"ts-loader": "^6.2.1",
"ts-node": "^8.6.0",
"tsc-watch": "^4.1.0",
"tsconfig-paths": "^3.9.0",
"tslint": "^6.0.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.7.4"
},
"peerDependencies": {
"date-fns": "^2.9.0",
"xml2js": "^0.4.23",
"stream": "~0.0.2",
"timers": "^0.1.1"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}