UNPKG

@meijering/nestjs-molliepayment

Version:

NestJs Wrapper around Mollie Api

109 lines (108 loc) 2.84 kB
{ "name": "@meijering/nestjs-molliepayment", "version": "2.1.1", "description": "NestJs Wrapper around Mollie Api", "author": { "name": "Jan Meijering" }, "license": "ISC", "engines": { "node": ">=18.0.0", "npm": ">=7.6.3" }, "keywords": [ "nestjs", "mollie", "payment" ], "main": "dist/index.js", "publishConfig": { "access": "public" }, "files": [ "dist/**/*", "*.md" ], "scripts": { "prebuild": "rimraf dist", "build": "npm run prebuild && nest build", "format": "prettier --write \"lib/**/*.ts\"", "lint": "eslint \"lib/**/*.ts\" --fix", "test": "jest", "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", "semantic-release": "semantic-release" }, "repository": { "type": "git", "url": "git+ssh://git@gitlab.com/meijering/nestjs-molliepayment.git" }, "bugs": { "url": "https://gitlab.com/meijering/nestjs-molliepayment/issues" }, "homepage": "https://gitlab.com/meijering/nestjs-molliepayment#readme", "peerDependencies": { "@nestjs/common": "9.x" }, "dependencies": { "@mollie/api-client": "^3.7.0", "@nestjs/axios": "^2.0.0", "axios": "^1.3.5" }, "devDependencies": { "@nestjs/cli": "^9.3.0", "@nestjs/common": "^9.3.12", "@nestjs/config": "^2.3.1", "@nestjs/core": "^9.3.12", "@nestjs/platform-express": "^9.3.12", "@nestjs/schematics": "^9.0.4", "@nestjs/testing": "^9.3.12", "@semantic-release/git": "^10.0.1", "@semantic-release/gitlab": "^12.0.1", "@semantic-release/npm": "^10.0.2", "@types/express": "^4.17.11", "@types/jest": "^29.5.0", "@types/node": "^18.15.11", "@types/supertest": "^2.0.10", "@typescript-eslint/eslint-plugin": "^5.57.0", "@typescript-eslint/parser": "^5.57.0", "acorn": "^8.7.0", "cpx": "^1.2.1", "eslint": "^8.37.0", "eslint-config-prettier": "^8.1.0", "eslint-plugin-prettier": "^4.2.1", "jest": "^29.5.0", "prettier": "^2.2.1", "reflect-metadata": "^0.1.13", "rimraf": "^4.4.1", "rxjs": "^7.5.2", "semantic-release": "^21.0.0", "supertest": "^6.1.3", "ts-jest": "^29.0.5", "ts-loader": "^9.4.2", "ts-node": "^10.9.1", "tsc-watch": "^6.0.0", "tsconfig-paths": "^4.1.2", "typescript": "^5.0.2" }, "jest": { "moduleFileExtensions": [ "js", "json", "ts" ], "rootDir": "lib", "testRegex": ".*\\.spec\\.ts$", "transform": { "^.+\\.(t|j)s$": "ts-jest" }, "collectCoverage": true, "collectCoverageFrom": [ "**/*.(t|j)s", "!**/index.ts" ], "coverageDirectory": "../coverage", "testEnvironment": "node" } }