@c.a.f/testing 1.0.0 → 1.0.1

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.
Files changed (1) hide show
  1. package/package.json +43 -29
package/package.json CHANGED
@@ -1,9 +1,17 @@
1
1
  {
2
2
  "name": "@c.a.f/testing",
3
3
  "type": "module",
4
- "version": "1.0.0",
4
+ "version": "1.0.1",
5
5
  "description": "Testing utilities and helpers for CAF applications. Provides mocks, test helpers, and utilities for testing UseCase, Ploc, Pulse, Workflow, Permission, I18n, and Validation.",
6
- "keywords": ["clean-architecture-frontend", "clean-architecture", "caf", "testing", "test-utils", "mocks", "test-helpers"],
6
+ "keywords": [
7
+ "clean-architecture-frontend",
8
+ "clean-architecture",
9
+ "caf",
10
+ "testing",
11
+ "test-utils",
12
+ "mocks",
13
+ "test-helpers"
14
+ ],
7
15
  "author": "ali aslani <aliaslani.mm@gmail.com>",
8
16
  "license": "MIT",
9
17
  "repository": "https://github.com/ialiaslani/caf.git",
@@ -18,43 +26,45 @@
18
26
  "default": "./.build/index.js"
19
27
  },
20
28
  "./core": {
21
- "types": "./.build/core/index.d.ts",
22
- "import": "./.build/core/index.js",
23
- "node": "./.build/core/index.js",
24
- "default": "./.build/core/index.js"
29
+ "types": "./.build/src/core/index.d.ts",
30
+ "import": "./.build/src/core/index.js",
31
+ "node": "./.build/src/core/index.js",
32
+ "default": "./.build/src/core/index.js"
25
33
  },
26
34
  "./workflow": {
27
- "types": "./.build/workflow/index.d.ts",
28
- "import": "./.build/workflow/index.js",
29
- "node": "./.build/workflow/index.js",
30
- "default": "./.build/workflow/index.js"
35
+ "types": "./.build/src/workflow/index.d.ts",
36
+ "import": "./.build/src/workflow/index.js",
37
+ "node": "./.build/src/workflow/index.js",
38
+ "default": "./.build/src/workflow/index.js"
31
39
  },
32
40
  "./permission": {
33
- "types": "./.build/permission/index.d.ts",
34
- "import": "./.build/permission/index.js",
35
- "node": "./.build/permission/index.js",
36
- "default": "./.build/permission/index.js"
41
+ "types": "./.build/src/permission/index.d.ts",
42
+ "import": "./.build/src/permission/index.js",
43
+ "node": "./.build/src/permission/index.js",
44
+ "default": "./.build/src/permission/index.js"
37
45
  },
38
46
  "./i18n": {
39
- "types": "./.build/i18n/index.d.ts",
40
- "import": "./.build/i18n/index.js",
41
- "node": "./.build/i18n/index.js",
42
- "default": "./.build/i18n/index.js"
47
+ "types": "./.build/src/i18n/index.d.ts",
48
+ "import": "./.build/src/i18n/index.js",
49
+ "node": "./.build/src/i18n/index.js",
50
+ "default": "./.build/src/i18n/index.js"
43
51
  },
44
52
  "./validation": {
45
- "types": "./.build/validation/index.d.ts",
46
- "import": "./.build/validation/index.js",
47
- "node": "./.build/validation/index.js",
48
- "default": "./.build/validation/index.js"
53
+ "types": "./.build/src/validation/index.d.ts",
54
+ "import": "./.build/src/validation/index.js",
55
+ "node": "./.build/src/validation/index.js",
56
+ "default": "./.build/src/validation/index.js"
49
57
  },
50
58
  "./react": {
51
- "types": "./.build/react/index.d.ts",
52
- "import": "./.build/react/index.js",
53
- "node": "./.build/react/index.js",
54
- "default": "./.build/react/index.js"
59
+ "types": "./.build/src/react/index.d.ts",
60
+ "import": "./.build/src/react/index.js",
61
+ "node": "./.build/src/react/index.js",
62
+ "default": "./.build/src/react/index.js"
55
63
  }
56
64
  },
57
- "files": [".build"],
65
+ "files": [
66
+ ".build"
67
+ ],
58
68
  "scripts": {
59
69
  "build": "tsc --build",
60
70
  "start": "tsc --watch",
@@ -75,8 +85,12 @@
75
85
  "@testing-library/react": ">=14.0.0"
76
86
  },
77
87
  "peerDependenciesMeta": {
78
- "react": { "optional": true },
79
- "@testing-library/react": { "optional": true }
88
+ "react": {
89
+ "optional": true
90
+ },
91
+ "@testing-library/react": {
92
+ "optional": true
93
+ }
80
94
  },
81
95
  "devDependencies": {
82
96
  "@testing-library/react": "^16.0.0",