@jaypie/testkit 1.1.35 → 1.2.0-rc.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +4 -105
- package/dist/index.js +3 -2
- package/dist/index.js.map +1 -1
- package/dist/matchers/toThrowJaypieError.matcher.d.ts +4 -3
- package/dist/matchers.module.d.ts +1 -96
- package/dist/mock/core.d.ts +165 -259
- package/dist/mock/datadog.d.ts +18 -2
- package/dist/mock/express.d.ts +4 -4
- package/dist/mock/index.d.ts +200 -277
- package/dist/mock/index.js +99 -702
- package/dist/mock/index.js.map +1 -1
- package/dist/mock/llm.d.ts +2 -0
- package/dist/mock/matchers/toThrowJaypieError.matcher.d.ts +4 -3
- package/dist/mock/matchers.module.d.ts +1 -96
- package/dist/mock/mock/core.d.ts +165 -259
- package/dist/mock/mock/datadog.d.ts +18 -2
- package/dist/mock/mock/express.d.ts +4 -4
- package/dist/mock/mock/llm.d.ts +2 -0
- package/dist/mock/mock/original.d.ts +9 -16
- package/dist/mock/mockLog.module.d.ts +1 -1
- package/dist/mock/original.d.ts +9 -16
- package/dist/mockLog.module.d.ts +1 -1
- package/package.json +25 -15
package/package.json
CHANGED
|
@@ -1,8 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jaypie/testkit",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0-rc.0",
|
|
4
|
+
"repository": {
|
|
5
|
+
"type": "git",
|
|
6
|
+
"url": "https://github.com/finlaysonstudio/jaypie"
|
|
7
|
+
},
|
|
4
8
|
"license": "MIT",
|
|
5
9
|
"author": "Finlayson Studio",
|
|
10
|
+
"sideEffects": false,
|
|
6
11
|
"type": "module",
|
|
7
12
|
"exports": {
|
|
8
13
|
".": {
|
|
@@ -29,23 +34,12 @@
|
|
|
29
34
|
"typecheck": "tsc --noEmit"
|
|
30
35
|
},
|
|
31
36
|
"dependencies": {
|
|
32
|
-
"@jaypie/aws": "^1.1.21",
|
|
33
|
-
"@jaypie/core": "^1.1.11",
|
|
34
|
-
"@jaypie/datadog": "^1.1.2",
|
|
35
|
-
"@jaypie/express": "^1.1.11",
|
|
36
|
-
"@jaypie/kit": "^1.1.0",
|
|
37
|
-
"@jaypie/lambda": "^1.1.4",
|
|
38
|
-
"@jaypie/llm": "^1.1.21",
|
|
39
|
-
"@jaypie/logger": "^1.1.0",
|
|
40
|
-
"@jaypie/mongoose": "^1.1.1",
|
|
41
|
-
"@jaypie/textract": "^0.2.4",
|
|
42
|
-
"jaypie": "^1.1.71",
|
|
43
37
|
"jest-extended": "^4.0.2",
|
|
44
38
|
"jest-json-schema": "^6.1.0",
|
|
45
39
|
"uuid": "^11.0.5"
|
|
46
40
|
},
|
|
47
41
|
"devDependencies": {
|
|
48
|
-
"@jaypie/types": "
|
|
42
|
+
"@jaypie/types": "*",
|
|
49
43
|
"@rollup/plugin-commonjs": "^28.0.3",
|
|
50
44
|
"@rollup/plugin-json": "^6.1.0",
|
|
51
45
|
"@rollup/plugin-node-resolve": "^16.0.1",
|
|
@@ -60,8 +54,24 @@
|
|
|
60
54
|
"typescript": "^5.0.0",
|
|
61
55
|
"vitest": "^3.0.5"
|
|
62
56
|
},
|
|
57
|
+
"peerDependencies": {
|
|
58
|
+
"@jaypie/errors": "1.2.0-rc.0",
|
|
59
|
+
"@jaypie/kit": "1.2.0-rc.0",
|
|
60
|
+
"@jaypie/logger": "1.2.0-rc.0",
|
|
61
|
+
"vitest": ">=1.0.0"
|
|
62
|
+
},
|
|
63
|
+
"peerDependenciesMeta": {
|
|
64
|
+
"@jaypie/errors": {
|
|
65
|
+
"optional": true
|
|
66
|
+
},
|
|
67
|
+
"@jaypie/kit": {
|
|
68
|
+
"optional": true
|
|
69
|
+
},
|
|
70
|
+
"@jaypie/logger": {
|
|
71
|
+
"optional": true
|
|
72
|
+
}
|
|
73
|
+
},
|
|
63
74
|
"publishConfig": {
|
|
64
75
|
"access": "public"
|
|
65
|
-
}
|
|
66
|
-
"gitHead": "b5c6bfda6c1fd0a9e8c0e2c648f1240390c2321d"
|
|
76
|
+
}
|
|
67
77
|
}
|