UNPKG

@mercury-labs/hashing

Version:
81 lines 2.4 kB
{ "name": "@mercury-labs/hashing", "version": "2.0.0", "description": "Mercury framework hashing library", "author": "duysolo <duypt.dev@gmail.com>", "repository": { "type": "git", "url": "https://github.com/duysolo/mercury-hashing" }, "keywords": [ "mercury-labs", "string encode/decode", "nestjs encode/decode string" ], "main": "dist/index.js", "typings": "dist/index.d.ts", "private": false, "license": "MIT", "scripts": { "prebuild": "rimraf dist", "build": "rm -rf ./dist && nest build", "format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"", "lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix", "increase-version": "node ./infrastructure/increase-version.js", "test": "jest --verbose=true", "test:watch": "jest --verbose=true --watch", "test:cov": "jest --coverage", "test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand", "test:e2e": "jest --verbose=true --config ./test/jest-e2e.json" }, "dependencies": { "@nestjs/common": "^9.0.0 || ^8.0.0 || ^7.0.0", "@nestjs/core": "^9.0.0 || ^8.0.0 || ^7.0.0", "rimraf": "^3.0.2" }, "devDependencies": { "@rushstack/eslint-config": "~2.6.1", "@nestjs/cli": "^9.0.0", "@nestjs/testing": "^9.0.0", "@types/jest": "27.0.2", "@types/supertest": "^2.0.11", "@typescript-eslint/eslint-plugin": "^5.0.0", "@typescript-eslint/parser": "^5.0.0", "eslint": "^8.0.1", "eslint-config-prettier": "^8.3.0", "eslint-plugin-prettier": "^4.0.0", "jest": "^27.2.5", "prettier": "^2.3.2", "source-map-support": "^0.5.20", "supertest": "^6.1.3", "ts-jest": "^27.0.3", "ts-loader": "^9.2.3", "ts-node": "^10.0.0", "tsconfig-paths": "^3.10.1", "typescript": "^4.3.5" }, "peerDependencies": { "@nestjs/common": "^9.0.0 || ^8.0.0 || ^7.0.0", "@nestjs/core": "^9.0.0 || ^8.0.0 || ^7.0.0" }, "jest": { "moduleFileExtensions": [ "js", "json", "ts" ], "rootDir": "src", "testRegex": ".*\\.spec\\.ts$", "transform": { "^.+\\.(t|j)s$": "ts-jest" }, "collectCoverageFrom": [ "**/*.(t|j)s" ], "coverageDirectory": "../coverage", "testEnvironment": "node" }, "publishConfig": { "duysolo:registry": "https://npm.pkg.github.com" } }