@thisisagile/easy-test
Version:
Straightforward library for testing microservices built with @thisisagile/easy
53 lines (52 loc) • 1.35 kB
JSON
{
"name": "@thisisagile/easy-test",
"version": "17.30.10",
"description": "Straightforward library for testing microservices built with @thisisagile/easy",
"author": "Sander Hoogendoorn",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git@github.com:thisisagile/easy.git"
},
"keywords": [
"typescript",
"microservices",
"domain-driven-design",
"evolutionary-architecture",
"jest",
"unit testing"
],
"scripts": {
"lint": "yarn g:eslint . --ext .js,.jsx,.ts,.tsx --fix",
"format": "yarn g:prettier --check --write src test *.json",
"build": "yarn g:tsc",
"build:tsup": "yarn g:tsup --onSuccess \"yarn g:tsc --emitDeclarationOnly --declaration\"",
"test": "yarn g:jest --coverage",
"prepack": "yarn g:copy-readme"
},
"sideEffects": false,
"files": [
"dist",
"src"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"typescript": "^5.7.3",
"weak-napi": "^2.0.2"
},
"dependencies": {
"@jest/expect-utils": "^29.7.0",
"@types/jest": "^29.5.14",
"@types/node": "^20.19.0",
"expect": "^29.7.0",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"jest-sonar-reporter": "^2.0.0",
"ts-jest": "^29.1.4"
}
}