UNPKG

monzolib

Version:

Fully Featured JS/Node Monzo Library

65 lines (64 loc) 1.49 kB
{ "name": "monzolib", "version": "0.1.2", "description": "Fully Featured JS/Node Monzo Library", "main": "./dist/index.js", "types": "./dist/index.d.js", "homepage": "https://github.com/robjtede/monzolib#readme", "repository": { "type": "git", "url": "git+https://github.com/robjtede/monzolib.git" }, "author": "robjtede <robjtede@icloud.com> (https://www.robjtede.dev)", "license": "MIT", "scripts": { "clean": "rimraf ./dist/*", "build": "npm run clean && tsc", "build:w": "npm run build -- --watch", "test": "ava", "test:w": "npm run test -- --watch", "precommit": "lint-staged && npm test", "prepare": "npm run build" }, "bugs": { "url": "https://github.com/robjtede/monzolib/issues" }, "keywords": [ "monzo", "bank", "fintech", "monzolib" ], "dependencies": { "date-fns": "^2.11.0", "debug": "^4.1.1", "lodash": "^4.17.15" }, "devDependencies": { "@types/debug": "4.1.5", "@types/lodash": "^4.14.149", "@types/node": "^13.9.3", "ava": "^2.4.0", "copyfiles": "^2.0.0", "eclint": "^2.8.1", "husky": "^4.2.3", "lint-staged": "^10.0.8", "prettier": "^2.0.1", "rimraf": "^2.6.2", "ts-node": "^8.8.1", "tslib": "^1.11.1", "typescript": "^3.8.3" }, "ava": { "compileEnhancements": false, "extensions": [ "ts" ], "require": [ "ts-node/register" ], "files": [ "test/**/*.test.ts" ] } }