@bernierllc/content-management-tests 0.1.5 → 0.1.8
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/package.json +45 -44
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bernierllc/content-management-tests",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.8",
|
|
4
4
|
"description": "Comprehensive test suite for the content management system with Playwright, Jest, and integration tests",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.esm.js",
|
|
@@ -13,6 +13,25 @@
|
|
|
13
13
|
"fixtures",
|
|
14
14
|
"mocks"
|
|
15
15
|
],
|
|
16
|
+
"scripts": {
|
|
17
|
+
"build": "tsup",
|
|
18
|
+
"dev": "tsup --watch",
|
|
19
|
+
"test": "jest",
|
|
20
|
+
"test:run": "jest --passWithNoTests",
|
|
21
|
+
"test:watch": "jest --watch",
|
|
22
|
+
"test:coverage": "jest --coverage",
|
|
23
|
+
"test:playwright": "playwright test",
|
|
24
|
+
"test:playwright:ui": "playwright test --ui",
|
|
25
|
+
"test:playwright:debug": "playwright test --debug",
|
|
26
|
+
"test:integration": "jest --testPathPattern=integration",
|
|
27
|
+
"test:e2e": "jest --testPathPattern=e2e",
|
|
28
|
+
"test:all": "npm run test && npm run test:playwright && npm run test:integration",
|
|
29
|
+
"test:ci": "npm run test:coverage && npm run test:playwright",
|
|
30
|
+
"lint": "eslint src --ext .ts,.tsx",
|
|
31
|
+
"lint:fix": "eslint src --ext .ts,.tsx --fix",
|
|
32
|
+
"type-check": "tsc --noEmit",
|
|
33
|
+
"setup": "playwright install"
|
|
34
|
+
},
|
|
16
35
|
"keywords": [
|
|
17
36
|
"testing",
|
|
18
37
|
"playwright",
|
|
@@ -27,40 +46,40 @@
|
|
|
27
46
|
"author": "Bernier LLC",
|
|
28
47
|
"license": "UNLICENSED",
|
|
29
48
|
"dependencies": {
|
|
30
|
-
"
|
|
49
|
+
"@bernierllc/content-autosave-manager": "1.2.0",
|
|
50
|
+
"@bernierllc/content-config-manager": "0.1.4",
|
|
51
|
+
"@bernierllc/content-editor-service": "0.3.0",
|
|
52
|
+
"@bernierllc/content-editor-ui": "0.1.3",
|
|
53
|
+
"@bernierllc/content-editorial-workflow": "0.1.4",
|
|
54
|
+
"@bernierllc/content-list-ui": "0.1.6",
|
|
55
|
+
"@bernierllc/content-management-suite": "0.4.0",
|
|
56
|
+
"@bernierllc/content-soft-delete": "1.2.0",
|
|
57
|
+
"@bernierllc/content-type-audio": "1.2.0",
|
|
58
|
+
"@bernierllc/content-type-image": "1.2.0",
|
|
59
|
+
"@bernierllc/content-type-registry": "1.3.0",
|
|
60
|
+
"@bernierllc/content-type-text": "1.2.0",
|
|
61
|
+
"@bernierllc/content-type-video": "1.2.0",
|
|
62
|
+
"@bernierllc/content-workflow-service": "0.1.5",
|
|
63
|
+
"@bernierllc/content-workflow-ui": "0.1.5",
|
|
64
|
+
"@faker-js/faker": "^8.0.0",
|
|
31
65
|
"@playwright/test": "^1.40.0",
|
|
32
|
-
"jest": "^29.5.0",
|
|
33
|
-
"@testing-library/react": "^14.0.0",
|
|
34
66
|
"@testing-library/jest-dom": "^6.0.0",
|
|
67
|
+
"@testing-library/react": "^14.0.0",
|
|
35
68
|
"@testing-library/user-event": "^14.5.0",
|
|
69
|
+
"date-fns": "^2.30.0",
|
|
70
|
+
"jest": "^29.5.0",
|
|
36
71
|
"jest-environment-jsdom": "^29.5.0",
|
|
72
|
+
"lodash": "^4.17.21",
|
|
73
|
+
"playwright": "^1.40.0",
|
|
37
74
|
"supertest": "^6.3.0",
|
|
38
|
-
"@faker-js/faker": "^8.0.0",
|
|
39
75
|
"uuid": "^9.0.0",
|
|
40
|
-
"
|
|
41
|
-
"lodash": "^4.17.21",
|
|
42
|
-
"zod": "^3.22.0",
|
|
43
|
-
"@bernierllc/content-management-suite": "0.2.2",
|
|
44
|
-
"@bernierllc/content-type-registry": "1.1.0",
|
|
45
|
-
"@bernierllc/content-editorial-workflow": "0.1.2",
|
|
46
|
-
"@bernierllc/content-autosave-manager": "1.0.1",
|
|
47
|
-
"@bernierllc/content-soft-delete": "1.0.0",
|
|
48
|
-
"@bernierllc/content-workflow-service": "0.1.3",
|
|
49
|
-
"@bernierllc/content-editor-service": "0.1.5",
|
|
50
|
-
"@bernierllc/content-config-manager": "0.1.2",
|
|
51
|
-
"@bernierllc/content-editor-ui": "0.1.1",
|
|
52
|
-
"@bernierllc/content-workflow-ui": "0.1.3",
|
|
53
|
-
"@bernierllc/content-list-ui": "0.1.3",
|
|
54
|
-
"@bernierllc/content-type-text": "1.0.2",
|
|
55
|
-
"@bernierllc/content-type-image": "1.0.2",
|
|
56
|
-
"@bernierllc/content-type-audio": "1.0.2",
|
|
57
|
-
"@bernierllc/content-type-video": "1.0.1"
|
|
76
|
+
"zod": "^3.22.0"
|
|
58
77
|
},
|
|
59
78
|
"devDependencies": {
|
|
60
79
|
"@types/jest": "^29.5.0",
|
|
80
|
+
"@types/lodash": "^4.14.0",
|
|
61
81
|
"@types/supertest": "^2.0.0",
|
|
62
82
|
"@types/uuid": "^9.0.0",
|
|
63
|
-
"@types/lodash": "^4.14.0",
|
|
64
83
|
"@typescript-eslint/eslint-plugin": "^6.0.0",
|
|
65
84
|
"@typescript-eslint/parser": "^6.0.0",
|
|
66
85
|
"eslint": "^8.0.0",
|
|
@@ -77,23 +96,5 @@
|
|
|
77
96
|
"access": "public",
|
|
78
97
|
"registry": "https://registry.npmjs.org/"
|
|
79
98
|
},
|
|
80
|
-
"
|
|
81
|
-
|
|
82
|
-
"dev": "tsup --watch",
|
|
83
|
-
"test": "jest",
|
|
84
|
-
"test:run": "jest --passWithNoTests",
|
|
85
|
-
"test:watch": "jest --watch",
|
|
86
|
-
"test:coverage": "jest --coverage",
|
|
87
|
-
"test:playwright": "playwright test",
|
|
88
|
-
"test:playwright:ui": "playwright test --ui",
|
|
89
|
-
"test:playwright:debug": "playwright test --debug",
|
|
90
|
-
"test:integration": "jest --testPathPattern=integration",
|
|
91
|
-
"test:e2e": "jest --testPathPattern=e2e",
|
|
92
|
-
"test:all": "npm run test && npm run test:playwright && npm run test:integration",
|
|
93
|
-
"test:ci": "npm run test:coverage && npm run test:playwright",
|
|
94
|
-
"lint": "eslint src --ext .ts,.tsx",
|
|
95
|
-
"lint:fix": "eslint src --ext .ts,.tsx --fix",
|
|
96
|
-
"type-check": "tsc --noEmit",
|
|
97
|
-
"setup": "playwright install"
|
|
98
|
-
}
|
|
99
|
-
}
|
|
99
|
+
"gitHead": "af7e74b3715d56d3a193e1bb6743b337c2b0df6d"
|
|
100
|
+
}
|