-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 1.91 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "jest-gwt",
"version": "3.1.2",
"description": "A small library to help Jest support given-when-then style testing without a bunch of overhead",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"src",
"!**/*.spec.ts"
],
"scripts": {
"build": "wireit",
"test": "wireit",
"lint": "wireit",
"test:coverage": "wireit",
"prepublishOnly": "wireit"
},
"wireit": {
"build": {
"command": "tsc --project ./tsconfig.build.json",
"files": [
"src/**/*.ts",
"tsconfig.*",
"!src/**/*.spec.ts"
],
"output": [
"lib/**"
]
},
"lint": {
"command": "eslint ./src ./examples"
},
"test": {
"command": "jest"
},
"test:coverage": {
"command": "jest --coverage"
},
"prepublishOnly": {
"dependencies": [
"lint",
"test:coverage",
"build"
]
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/devzeebo/jest-gwt.git"
},
"peerDependencies": {
"@jest/globals": ">26.0.0 || >27.0.0 || >28.0.0 || >29.0.0",
"jest": ">26.0.0 || >27.0.0 || >28.0.0 || >29.0.0"
},
"keywords": [
"jest",
"gwt",
"unit",
"testing",
"given",
"when",
"then"
],
"author": "Eric Siebeneich",
"license": "MIT",
"bugs": {
"url": "https://github.com/devzeebo/jest-gwt/issues"
},
"homepage": "https://github.com/devzeebo/jest-gwt#readme",
"devDependencies": {
"@jest/globals": "^29.6.4",
"@react-ddd/eslint-config": "^0.3.1",
"@swc/core": "^1.3.83",
"@swc/jest": "^0.2.29",
"@types/jest": "^29.5.4",
"@types/lodash": "^4.14.198",
"@types/node": "^20.6.0",
"axios": "^1.5.0",
"jest": "^29.6.4",
"jest-mock": "^29.6.3",
"lodash": "^4.17.21",
"typescript": "^5.2.2",
"wireit": "^0.13.0"
},
"dependencies": {
"gwt-runner": "^2.3.0"
}
}