thrilled-be-testing
Version:
Testing utilities and helpers package with Jest, Supertest, and database testing support for Express applications
72 lines (71 loc) • 1.69 kB
JSON
{
"name": "thrilled-be-testing",
"version": "1.0.0",
"description": "Testing utilities and helpers package with Jest, Supertest, and database testing support for Express applications",
"keywords": [
"testing",
"jest",
"supertest",
"test-utilities",
"express",
"backend",
"mocking",
"typescript"
],
"author": "BE Monorepo Team",
"license": "MIT",
"homepage": "https://github.com/your-org/be-monorepo#readme",
"repository": {
"type": "git",
"url": "https://github.com/your-org/be-monorepo.git",
"directory": "packages/testing"
},
"bugs": {
"url": "https://github.com/your-org/be-monorepo/issues"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"development": "./src/index.ts",
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"!**/*.tsbuildinfo"
],
"nx": {
"tags": [
"npm:private",
"type:lib",
"scope:be"
],
"name": "testing"
},
"dependencies": {
"tslib": "^2.3.0",
"thrilled-be-core": "^1.0.0",
"thrilled-be-types": "^1.0.0",
"thrilled-be-databases": "^1.0.0",
"thrilled-be-auth": "^1.0.0",
"express": "^5.1.0",
"supertest": "^6.3.3",
"jest": "^29.7.0",
"faker": "^5.5.3",
"ioredis": "^5.3.2",
"pg": "^8.11.3",
"typedi": "^0.10.0"
},
"devDependencies": {
"@types/express": "^5.0.2",
"@types/supertest": "^2.0.12",
"@types/jest": "^29.5.12",
"@types/faker": "^5.5.8",
"@types/pg": "^8.10.7"
}
}