generated from FredericEspiau/kata-ts-base
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 867 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"name": "jest-base",
"version": "3.0.0",
"description": "Base for testing with Jest and TS",
"scripts": {
"start": "ts-node src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FredericEspiau/jest-base.git"
},
"author": "Frédéric Espiau <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/FredericEspiau/jest-base/issues"
},
"engines": {
"node": ">=18.0.0"
},
"homepage": "https://github.com/FredericEspiau/jest-base#readme",
"devDependencies": {
"@types/jest": "29.2.0",
"@types/node": "18.11.8",
"@types/prompt-sync": "4.2.0",
"jest": "29.2.2",
"jest-mock-extended": "3.0.1",
"ts-jest": "29.0.3",
"ts-node": "10.9.1",
"tslib": "2.4.0",
"typescript": "4.8.4"
},
"dependencies": {
"prompt-sync": "4.2.0"
}
}