-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.49 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.49 KB
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
{
"name": "express-browser-reload",
"description": "✨ Node.js module to refresh your browser when your Express server restarts.",
"author": "Roosevelt Framework Team <rooseveltframework@gmail.com>",
"contributors": [
{
"name": "Contributors",
"url": "https://github.com/rooseveltframework/express-browser-reload/graphs/contributors"
},
"Alexander J. Lallier <alexanderlallier@gmail.com>",
"JP Richardson <jprichardson@gmail.com>"
],
"version": "4.0.0",
"homepage": "https://rooseveltframework.org/docs/express-browser-reload/latest",
"license": "CC-BY-4.0",
"main": "express-browser-reload.js",
"engines": {
"node": ">=20.0.0"
},
"devDependencies": {
"@playwright/test": "1.59.1",
"express": "5.2.1",
"standard": "17.1.2"
},
"scripts": {
"sample1": "node -e \"process.chdir('sampleApps/express'); require('./sampleApps/express/server1.js')\"",
"sample2": "node -e \"process.chdir('sampleApps/express'); require('./sampleApps/express/server2.js')\"",
"sample3": "node -e \"process.chdir('sampleApps/express'); require('./sampleApps/express/server3.js')\"",
"lint": "standard",
"lint-fix": "standard --fix",
"test": "playwright test"
},
"repository": {
"type": "git",
"url": "git://github.com/rooseveltframework/express-browser-reload.git"
},
"keywords": [
"reload",
"refresh",
"http",
"express",
"development"
],
"funding": "https://www.paypal.com/donate/?hosted_button_id=2L2X8GRXZCGJ6"
}