@bakesaled/muster
Version:
A tool that collects your financial information from the web.
85 lines (84 loc) • 2.25 kB
JSON
{
"name": "@bakesaled/muster",
"version": "0.1.4",
"description": "A tool that collects your financial information from the web.",
"author": "Brandon Eleuterio",
"license": "MIT",
"keywords": [
"TypeScript",
"JavaScript",
"Open Financial Exchange",
"OFX"
],
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/bakesaled/muster.git"
},
"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\"",
"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",
"prompts": "^2.3.1",
"uuid": "^3.4.0",
"xmldom": "^0.2.1"
},
"devDependencies": {
"@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",
"@types/uuid": "^3.4.7",
"@types/xmldom": "^0.1.29",
"jest": "^24.9.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",
"uuid": "^3.4.0",
"xmldom": "^0.2.1"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}