@golevelup/ts-jest
Version:
Reusable utilities to help level up NestJS Testing
62 lines • 1.47 kB
JSON
{
"name": "@golevelup/ts-jest",
"version": "1.2.1",
"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"
},
"bugs": {
"url": "https://github.com/golevelup/nestjs/issues"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@aws-sdk/client-s3": "^3.980.0",
"@jest/globals": "^27.4.3",
"jest": "^27.4.3",
"jest-mock": "27.5.1",
"typeorm": "^0.3.28"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.ts$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
},
"gitHead": "6f97aab8ce9d65dc074750a3ee467ec5ff3b9908",
"scripts": {
"copy-readme": "cp ../../../docs/testing/ts-jest.md ./README.md",
"build": "tsc --build tsconfig.build.json",
"build:watch": "tsc --build tsconfig.build.json --watch",
"test": "jest",
"typecheck": "tsc --noEmit"
}
}