@happy-dom/jest-environment 8.2.6 → 8.3.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.
- package/package.json +96 -96
package/package.json
CHANGED
@@ -1,97 +1,97 @@
|
|
1
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
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
}
|
2
|
+
"name": "@happy-dom/jest-environment",
|
3
|
+
"version": "8.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 && 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.js && node ./bin/copy-tsdef-for-lit.js && node ./bin/copy-package-json-for-lit.js && tsc",
|
29
|
+
"watch": "npm run compile && tsc -w --preserveWatchOutput",
|
30
|
+
"lint": "eslint --ignore-path .gitignore --max-warnings 0 .",
|
31
|
+
"lint:fix": "eslint --ignore-path .gitignore --max-warnings 0 --fix .",
|
32
|
+
"test": "jest",
|
33
|
+
"test:watch": "jest --runInBand --watch",
|
34
|
+
"test:debug": "node --inspect-brk ./node_modules/.bin/jest --runInBand"
|
35
|
+
},
|
36
|
+
"jest": {
|
37
|
+
"transform": {
|
38
|
+
"^.+\\.(ts|tsx)?$": "ts-jest"
|
39
|
+
},
|
40
|
+
"testMatch": [
|
41
|
+
"**/test/**/*.test.ts",
|
42
|
+
"**/test/**/*.test.tsx"
|
43
|
+
],
|
44
|
+
"globals": {
|
45
|
+
"ts-jest": {
|
46
|
+
"tsconfig": "./test/tsconfig.json"
|
47
|
+
}
|
48
|
+
},
|
49
|
+
"testEnvironment": "./lib"
|
50
|
+
},
|
51
|
+
"dependencies": {
|
52
|
+
"@jest/environment": "^29.4.0",
|
53
|
+
"@jest/fake-timers": "^29.4.0",
|
54
|
+
"@jest/types": "^29.4.0",
|
55
|
+
"jest-mock": "^29.4.0",
|
56
|
+
"jest-util": "^29.4.0",
|
57
|
+
"happy-dom": "^8.3.1"
|
58
|
+
},
|
59
|
+
"devDependencies": {
|
60
|
+
"@typescript-eslint/eslint-plugin": "^5.16.0",
|
61
|
+
"@typescript-eslint/parser": "^5.16.0",
|
62
|
+
"@types/node": "^15.6.0",
|
63
|
+
"@types/react": "^17.0.2",
|
64
|
+
"@testing-library/react": "^12.1.2",
|
65
|
+
"@testing-library/user-event": "^14.4.3",
|
66
|
+
"@types/react-dom": "^17.0.2",
|
67
|
+
"eslint": "^8.11.0",
|
68
|
+
"eslint-config-prettier": "^8.5.0",
|
69
|
+
"eslint-plugin-prettier": "^4.0.0",
|
70
|
+
"eslint-plugin-filenames": "^1.3.2",
|
71
|
+
"eslint-plugin-import": "^2.25.4",
|
72
|
+
"eslint-plugin-jest": "^26.1.2",
|
73
|
+
"eslint-plugin-jsdoc": "^38.0.6",
|
74
|
+
"eslint-plugin-json": "^3.1.0",
|
75
|
+
"eslint-plugin-turbo": "^0.0.7",
|
76
|
+
"prettier": "^2.6.0",
|
77
|
+
"typescript": "^4.6.2",
|
78
|
+
"jest": "^27.5.1",
|
79
|
+
"ts-jest": "^27.1.3",
|
80
|
+
"react": "^17.0.2",
|
81
|
+
"react-dom": "^17.0.2",
|
82
|
+
"vue": "^3.2.31",
|
83
|
+
"lit": "^2.2.1",
|
84
|
+
"@lit/reactive-element": "^1.3.1",
|
85
|
+
"lit-element": "^3.2.0",
|
86
|
+
"lit-html": "^2.2.1",
|
87
|
+
"@angular/core": "^10.0.7",
|
88
|
+
"@angular/platform-browser-dynamic": "^10.0.7",
|
89
|
+
"@angular/platform-browser": "^10.0.7",
|
90
|
+
"@angular/compiler": "^10.0.7",
|
91
|
+
"@angular/common": "^10.0.7",
|
92
|
+
"jquery": "^3.6.0",
|
93
|
+
"zone.js": "^0.10.3",
|
94
|
+
"glob": "^7.2.0",
|
95
|
+
"cpy": "^8.1.2"
|
96
|
+
}
|
97
|
+
}
|