-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.15 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
52
53
54
55
56
57
58
59
60
61
{
"name": "express-dom",
"version": "8.14.3",
"description": "Prepare, render web pages - express middleware",
"main": "index.js",
"files": [
"/lib"
],
"engines": {
"node": ">=18"
},
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git://github.com/kapouer/express-dom.git"
},
"keywords": [
"DOM",
"express",
"prerender"
],
"author": "Jérémy Lal <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kapouer/express-dom/issues"
},
"dependencies": {
"bl": "^6.0.16",
"class-deferred": "^1.0.1",
"clone": "^2.1.2",
"debug": "^4.3.7",
"lightning-pool": "^4.8.0",
"playwright-core": "^1.47.2",
"undici": "^6.19.8",
"which": "^4.0.0"
},
"devDependencies": {
"@kapouer/eslint-config": "^2.0.0",
"cookie": "^0.6.0",
"express": "^4.21.0",
"mocha": "^10.7.3"
},
"mocha": {
"exit": true
},
"eslintConfig": {
"extends": "@kapouer/eslint-config",
"overrides": [
{
"files": [
"test/*.js"
],
"env": {
"mocha": true
}
}
]
}
}