clean-code-typescript/examples/unit-testing/package.json
2022-12-12 13:39:57 -06:00

20 lines
379 B
JSON

{
"name": "unit-testing",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.2.4",
"@types/node": "^18.11.13",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}