@marceloclp/monzojs
Version:
Unofficial wrapper for the Monzo API written in TypeScript.
52 lines (51 loc) • 1.38 kB
JSON
{
"name": "@marceloclp/monzojs",
"version": "1.0.1",
"description": "Unofficial wrapper for the Monzo API written in TypeScript.",
"author": "Marcelo Perrella <marceloclperrella@gmail.com>",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/marceloclp/monzojs.git"
},
"keywords": [
"monzo",
"api",
"wrapper",
"js",
"ts"
],
"scripts": {
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint --config .eslintrc.js . --ext .ts",
"test": "jest --config jest.config.js",
"build": "tsc",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^27.5.1",
"prettier": "^2.6.2",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3"
},
"files": [
"lib/**/*"
],
"dependencies": {
"query-string": "^7.1.1"
}
}