-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.66 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.66 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
46
47
48
49
50
51
52
53
{
"name": "@caboodle-tech/node-simple-server",
"version": "4.3.0",
"description": "Node Simple Server (NSS): A small but effective node based server for development sites, customizable live reloading, and websocket support built-in.",
"main": "bin/nss.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"example": "node ./examples/run.js",
"example:production": "node ./examples/run.js production",
"example:website": "node ./examples/run.js website",
"example:websocket": "node ./examples/run.js websocket"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/caboodle-tech/node-simple-server.git"
},
"keywords": [
"Node",
"Simple",
"Server",
"Live",
"Reloading",
"Callback",
"Functions",
"WebSocket",
"Internal",
"Applications"
],
"author": "Christopher Keers <source[at]caboodle.tech>",
"contributors": [
"Caboodle Tech Inc (https://github.com/caboodle-tech)"
],
"license": "Common Clause with MIT",
"bugs": {
"url": "https://github.com/caboodle-tech/node-simple-server/issues"
},
"homepage": "https://github.com/caboodle-tech/node-simple-server#readme",
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"chokidar": "^5.0.0",
"ws": "^8.19.0"
},
"devDependencies": {
"@html-eslint/eslint-plugin": "^0.32.0",
"@html-eslint/parser": "^0.32.0",
"eslint": "^9.39.4",
"eslint-plugin-jsonc": "^2.21.1",
"jsonc-eslint-parser": "^2.4.2"
}
}