-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
51 lines (51 loc) · 1.18 KB
/
package.json
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
{
"name": "global-jsdom-workspace",
"description": "Enable DOM in Node.js",
"author": {
"name": "jonathan schatz",
"email": "[email protected]",
"url": "https://github.com/modosc"
},
"private": true,
"bugs": {
"url": "https://github.com/modosc/global-jsdom/issues"
},
"contributors": [
"Rico Sta. Cruz <[email protected]>"
],
"devDependencies": {
"chai": "^5.1.1",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-mocha": "^10.5.0",
"jsdom": "^25.0.1",
"mocha": "^10.7.3"
},
"homepage": "https://github.com/modosc/global-jsdom#readme",
"keywords": [
"dom",
"jsdom",
"test"
],
"license": "MIT",
"peerDependencies": {
"jsdom": ">=24 <25"
},
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/modosc/global-jsdom.git"
},
"scripts": {
"test": "yarn workspaces foreach -A run test",
"lint": "yarn workspaces foreach -Ap run lint",
"lint:fix": "yarn workspaces foreach -Ap run lint:fix"
},
"packageManager": "[email protected]",
"workspaces": [
"packages/*"
]
}