-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 992 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
35
36
37
38
39
40
{
"name": "web-dev-server-example-chat-javascript",
"version": "3.0.26",
"keywords": [
"chat",
"javascript",
"node"
],
"description": "Chat example with session authentication in Javascript.",
"homepage": "https://github.com/web-dev-server/example-chat-javascript",
"repository": {
"type": "git",
"url": "https://github.com/web-dev-server/example-chat-javascript.git"
},
"license": "BSD-3-Clause",
"author": {
"name": "Tom Flídr",
"email": "[email protected]",
"url": "https://github.com/tomFlidr"
},
"main": "chat/js/server/run.js",
"scripts": {
"postinstall": "copy-files-from-to",
"start": "node chat/js/server/run.js"
},
"copyFiles": [
{
"from": "node_modules/ajax-min/builds/latest/ajax.min.js",
"to": "chat/js/ajax.min.js"
}
],
"dependencies": {
"ajax-min": "^1.0.9",
"web-dev-server": "^3.0.26",
"ws": "^8.5.0"
},
"devDependencies": {
"copy-files-from-to": "^3.2.2"
}
}