2025-08-21 20:52:08 +02:00

59 lines
1.3 KiB
JSON

{
"name": "@apihub24/password-hasher",
"version": "1.0.4",
"description": "",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"test:coverage": "jest --coverage",
"pub": "npm publish",
"rel": "npm i && npm run build && npm run test:coverage"
},
"dependencies": {
"@nestjs/common": "^11.1.6",
"@nestjs/config": "^4.0.2",
"@apihub24/token-authentication": "^1.0.0",
"bcrypt": "^6.0.0"
},
"devDependencies": {
"@nestjs/testing": "^11.1.6",
"typescript": "^5.9.2",
"@types/jest": "^30.0.0",
"jest": "^30.0.0",
"ts-jest": "^29.4.1"
},
"keywords": [],
"author": {
"email": "markusmorgenstern87@outlook.de",
"name": "Markus Morgenstern",
"url": "https://git.apihub24.de/"
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": ".",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "./coverage",
"testEnvironment": "node",
"roots": [
"<rootDir>/src/"
],
"moduleNameMapper": {}
}
}