UNPKG

@lunch-money/kraken-extension

Version:

A wrapper around the Kraken API for enabling Lunch Money to gather information about a user's account.

79 lines (78 loc) 2.1 kB
{ "name": "@lunch-money/kraken-extension", "version": "1.0.1", "main": "dist/cjs/main.js", "module": "dist/mjs/main.js", "exports": { ".": { "import": "./dist/mjs/main.js", "require": "./dist/cjs/main.js" } }, "typesVersions": { "*": { "main.d.ts": [ "dist/mjs/main.d.ts" ] } }, "files": [ "dist/**/*" ], "author": { "name": "Steven Steinrücken", "email": "info@steven-steinruecken.de" }, "bugs": "https://github.com/lunch-money/kraken-extension/issues", "homepage": "https://github.com/lunch-money/kraken-extension#README", "license": "MIT", "keywords": [ "lunch money", "kraken", "budgeting" ], "description": "A wrapper around the Kraken API for enabling Lunch Money to gather information about a user's account.", "repository": "github:lunch-money/kraken-extension", "scripts": { "clean": "rm -rf dist/*", "build": "npm run clean && tsc -p tsconfig.build-mjs.json && tsc -p tsconfig.build-cjs.json && sh ./postbuild", "lint": "eslint '*/**/*.{js,ts,tsx}' --fix", "test": "node --loader ts-node/esm node_modules/mocha/lib/cli/cli --recursive --extension ts", "prepare": "husky install" }, "devDependencies": { "@types/chai": "^4", "@types/chai-as-promised": "^7.1.4", "@types/mocha": "^9", "@types/nock": "^11.1.0", "@types/node": "^16.7.2", "@types/qs": "^6", "@typescript-eslint/eslint-plugin": "^4.29.2", "@typescript-eslint/parser": "^4.29.2", "chai": "^4.3.4", "chai-as-promised": "^7.1.1", "eslint": "^7.32.0", "eslint-config-prettier": "^8.3.0", "eslint-plugin-prettier": "^3.4.0", "husky": "^7.0.0", "lint-staged": "^11.1.2", "mocha": "^9.1.0", "nock": "^13.1.1", "prettier": "^2.3.2", "ts-node": "^10.2.1", "typescript": "^4.3.5" }, "engines": { "node": "^12.20.0 || ^14.17.1 || >=16.0.0" }, "lint-staged": { "*.{js,ts,tsx}": [ "eslint --fix" ] }, "dependencies": { "axios": "^0.21.1", "crypto": "^1.0.1", "qs": "^6.10.1" } }