UNPKG

@thisisagile/easy-test

Version:

Straightforward library for testing microservices built with @thisisagile/easy

53 lines (52 loc) 1.35 kB
{ "name": "@thisisagile/easy-test", "version": "18.11.2", "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": "^30.4.1", "@types/jest": "^30.0.0", "@types/node": "^20.19.0", "expect": "^30.4.1", "jest": "^30.4.2", "jest-junit": "^17.0.0", "jest-sonar-reporter": "^2.0.0", "ts-jest": "^29.4.11" } }