@happy-dom/jest-environment 13.3.1 → 13.3.3

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 (2) hide show
  1. package/README.md +4 -0
  2. package/package.json +89 -89
package/README.md CHANGED
@@ -115,6 +115,10 @@ Read more about how Happy DOM works in our [documentation](https://github.com/ca
115
115
 
116
116
  See how the test was done [here](https://github.com/capricorn86/happy-dom-performance-test)
117
117
 
118
+ # Sister Projects
119
+
120
+ [<img alt="Happy Conventional Commit" width="120px" src="https://raw.githubusercontent.com/capricorn86/happy-conventional-commit/main/docs/logo_thumbnail.jpg" />](https://github.com/capricorn86/happy-conventional-commit)
121
+
118
122
  # Sponsors
119
123
 
120
124
  [<img alt="RTVision" width="120px" src="https://avatars.githubusercontent.com/u/8292810?s=200&v=4" />](https://rtvision.com)
package/package.json CHANGED
@@ -1,92 +1,92 @@
1
1
  {
2
- "name": "@happy-dom/jest-environment",
3
- "version": "13.3.1",
4
- "license": "MIT",
5
- "homepage": "https://github.com/capricorn86/happy-dom/tree/master/packages/jest-environment",
6
- "repository": "https://github.com/capricorn86/happy-dom",
7
- "author": "David Ortner",
8
- "description": "Use Happy DOM as environment in Jest.",
9
- "main": "lib/index.js",
10
- "keywords": [
11
- "jest",
12
- "environment",
13
- "jsdom",
14
- "dom",
15
- "browser",
16
- "custom",
17
- "elements",
18
- "web",
19
- "components",
20
- "html",
21
- "whatwg",
22
- "w3c"
23
- ],
24
- "publishConfig": {
25
- "access": "public"
26
- },
27
- "scripts": {
28
- "compile": "node ./bin/build-lit-ts-config.cjs && tsc --project tmp/tsconfig.lit-reactive-element.json && tsc --project tmp/tsconfig.lit-element.json && tsc --project tmp/tsconfig.lit-html.json && tsc --project tmp/tsconfig.lit.json && node ./bin/transform-lit-require.cjs && node ./bin/copy-tsdef-for-lit.cjs && node ./bin/copy-package-json-for-lit.cjs && tsc",
29
- "watch": "npm run compile && tsc -w --preserveWatchOutput",
30
- "test": "jest",
31
- "test:watch": "jest --watch",
32
- "test:debug": "node --inspect-brk ../../node_modules/.bin/jest --runInBand --testTimeout 60000"
33
- },
34
- "jest": {
35
- "transform": {
36
- "^.+\\.(ts|tsx)?$": [
37
- "ts-jest",
38
- {
39
- "tsconfig": "./test/tsconfig.json"
40
- }
41
- ]
42
- },
43
- "testMatch": [
44
- "**/test/**/*.test.ts",
45
- "**/test/**/*.test.tsx"
46
- ],
47
- "testEnvironment": "./lib"
2
+ "name": "@happy-dom/jest-environment",
3
+ "version": "13.3.3",
4
+ "license": "MIT",
5
+ "homepage": "https://github.com/capricorn86/happy-dom/tree/master/packages/jest-environment",
6
+ "repository": "https://github.com/capricorn86/happy-dom",
7
+ "author": "David Ortner",
8
+ "description": "Use Happy DOM as environment in Jest.",
9
+ "main": "lib/index.js",
10
+ "keywords": [
11
+ "jest",
12
+ "environment",
13
+ "jsdom",
14
+ "dom",
15
+ "browser",
16
+ "custom",
17
+ "elements",
18
+ "web",
19
+ "components",
20
+ "html",
21
+ "whatwg",
22
+ "w3c"
23
+ ],
24
+ "publishConfig": {
25
+ "access": "public"
26
+ },
27
+ "scripts": {
28
+ "compile": "node ./bin/build-lit-ts-config.cjs && tsc --project tmp/tsconfig.lit-reactive-element.json && tsc --project tmp/tsconfig.lit-element.json && tsc --project tmp/tsconfig.lit-html.json && tsc --project tmp/tsconfig.lit.json && node ./bin/transform-lit-require.cjs && node ./bin/copy-tsdef-for-lit.cjs && node ./bin/copy-package-json-for-lit.cjs && tsc",
29
+ "watch": "npm run compile && tsc -w --preserveWatchOutput",
30
+ "test": "jest",
31
+ "test:watch": "jest --watch",
32
+ "test:debug": "node --inspect-brk ../../node_modules/.bin/jest --runInBand --testTimeout 60000"
33
+ },
34
+ "jest": {
35
+ "transform": {
36
+ "^.+\\.(ts|tsx)?$": [
37
+ "ts-jest",
38
+ {
39
+ "tsconfig": "./test/tsconfig.json"
40
+ }
41
+ ]
48
42
  },
49
- "dependencies": {
50
- "@jest/environment": "^29.4.0",
51
- "@jest/fake-timers": "^29.4.0",
52
- "@jest/types": "^29.4.0",
53
- "happy-dom": "13.3.1",
54
- "jest-mock": "^29.4.0",
55
- "jest-util": "^29.4.0"
56
- },
57
- "devDependencies": {
58
- "@angular/common": "^10.0.7",
59
- "@angular/compiler": "^10.0.7",
60
- "@angular/core": "^10.0.7",
61
- "@angular/platform-browser": "^10.0.7",
62
- "@angular/platform-browser-dynamic": "^10.0.7",
63
- "@lit/reactive-element": "^1.3.1",
64
- "@radix-ui/react-select": "^1.2.2",
65
- "@testing-library/react": "^14.0.0",
66
- "@testing-library/user-event": "^14.5.1",
67
- "@types/jest": "29.5.2",
68
- "@types/node": "^16.11.7",
69
- "@types/react": "^18.2.0",
70
- "@types/react-dom": "^18.2.0",
71
- "@typescript-eslint/eslint-plugin": "^5.16.0",
72
- "@typescript-eslint/parser": "^5.16.0",
73
- "express": "^4.18.2",
74
- "glob": "^7.2.0",
75
- "jest": "^29.4.0",
76
- "jquery": "^3.6.0",
77
- "lit": "^2.2.1",
78
- "lit-element": "^3.2.0",
79
- "lit-html": "^2.2.1",
80
- "prettier": "^2.6.0",
81
- "react": "^18.2.0",
82
- "react-dom": "^18.2.0",
83
- "rxjs": "^6.5.3",
84
- "ts-jest": "^29.1.1",
85
- "typescript": "^5.0.4",
86
- "vue": "^3.2.31",
87
- "zone.js": "^0.10.3"
88
- },
89
- "engines": {
90
- "node": ">=16.0.0"
91
- }
43
+ "testMatch": [
44
+ "**/test/**/*.test.ts",
45
+ "**/test/**/*.test.tsx"
46
+ ],
47
+ "testEnvironment": "./lib"
48
+ },
49
+ "dependencies": {
50
+ "@jest/environment": "^29.4.0",
51
+ "@jest/fake-timers": "^29.4.0",
52
+ "@jest/types": "^29.4.0",
53
+ "happy-dom": "^13.3.3",
54
+ "jest-mock": "^29.4.0",
55
+ "jest-util": "^29.4.0"
56
+ },
57
+ "devDependencies": {
58
+ "@angular/common": "^10.0.7",
59
+ "@angular/compiler": "^10.0.7",
60
+ "@angular/core": "^10.0.7",
61
+ "@angular/platform-browser": "^10.0.7",
62
+ "@angular/platform-browser-dynamic": "^10.0.7",
63
+ "@lit/reactive-element": "^1.3.1",
64
+ "@radix-ui/react-select": "^1.2.2",
65
+ "@testing-library/react": "^14.0.0",
66
+ "@testing-library/user-event": "^14.5.1",
67
+ "@types/jest": "29.5.2",
68
+ "@types/node": "^16.11.7",
69
+ "@types/react": "^18.2.0",
70
+ "@types/react-dom": "^18.2.0",
71
+ "@typescript-eslint/eslint-plugin": "^5.16.0",
72
+ "@typescript-eslint/parser": "^5.16.0",
73
+ "express": "^4.18.2",
74
+ "glob": "^7.2.0",
75
+ "jest": "^29.4.0",
76
+ "jquery": "^3.6.0",
77
+ "lit": "^2.2.1",
78
+ "lit-element": "^3.2.0",
79
+ "lit-html": "^2.2.1",
80
+ "prettier": "^2.6.0",
81
+ "react": "^18.2.0",
82
+ "react-dom": "^18.2.0",
83
+ "rxjs": "^6.5.3",
84
+ "ts-jest": "^29.1.1",
85
+ "typescript": "^5.0.4",
86
+ "vue": "^3.2.31",
87
+ "zone.js": "^0.10.3"
88
+ },
89
+ "engines": {
90
+ "node": ">=16.0.0"
91
+ }
92
92
  }