-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
34 lines (34 loc) · 876 Bytes
/
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
{
"name": "jsdom-devtools-formatter",
"version": "1.0.1",
"description": "Make jsdom elements look like real DOM elements in Chrome Devtools console",
"repository": "https://github.com/jsdom/jsdom-devtools-formatter",
"engines": {
"node": ">=18.12.1"
},
"main": "index.js",
"files": [
"index.js",
"src"
],
"scripts": {
"test": "jest",
"test:debug": "node --inspect ./node_modules/.bin/jest --runInBand",
"test:manual_jest": "node --inspect ./node_modules/.bin/jest --runInBand manual-testing/jest",
"test:manual_node": "node --inspect manual-testing/node.js"
},
"keywords": [
"jsdom",
"chrome",
"devtools",
"console",
"formatter"
],
"author": "Nicklas Gummesson",
"license": "MIT",
"devDependencies": {
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"jsdom": "^20.0.3"
}
}