@golevelup/ts-jest
Version:
Reusable utilities to help level up NestJS Testing
59 lines (58 loc) • 1.3 kB
JSON
{
"name": "@golevelup/ts-jest",
"version": "0.7.0",
"description": "Reusable utilities to help level up NestJS Testing",
"author": "Jesse Carter <jesse.r.carter@gmail.com>",
"homepage": "https://github.com/golevelup/nestjs#readme",
"license": "MIT",
"keywords": [
"NestJS",
"testing",
"utilities",
"levelup"
],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"directories": {
"lib": "lib",
"test": "__tests__"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/golevelup/nestjs.git"
},
"scripts": {
"build": "tsc --build tsconfig.build.json",
"build:watch": "tsc --build tsconfig.build.json --watch",
"test": "jest"
},
"bugs": {
"url": "https://github.com/golevelup/nestjs/issues"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@jest/globals": "^27.4.3",
"jest": "^27.4.3",
"jest-mock": "27.5.1"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.ts$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
},
"gitHead": "c523a55a7802b84f8d2fc6f3d2cc77b20e0a9705"
}