-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.3 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.3 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
{
"name": "smart-update-websockets",
"description": "Example WebSockets server and client showing throttled live updates using dna-dom",
"version": "1.0.0",
"license": "MIT",
"type": "module",
"module": "server.js",
"exports": "./server.js",
"repository": {
"type": "git",
"url": "git+https://github.com/dna-dom/smart-update-websockets.git"
},
"homepage": "https://github.com/dna-dom/smart-update-websockets",
"bugs": "https://github.com/dna-dom/smart-update-websockets/issues",
"author": "Center Key (https://centerkey.com)",
"keywords": [
"node",
"websockets",
"dna-dom",
"javascript"
],
"jshintConfig": {
"esversion": 11,
"strict": "implied",
"eqeqeq": true,
"undef": true,
"unused": true,
"browser": true,
"node": true,
"globals": {
"dna": false,
"WebSocket": true
}
},
"scripts": {
"pretest": "jshint . --exclude-path .gitignore",
"test": "html-validator web"
},
"dependencies": {
"bufferutil": "~4.1",
"express": "~5.2",
"jshint": "~2.13",
"ws": "~8.20"
},
"devDependencies": {
"@fortawesome/fontawesome-free": "~7.2",
"dna-dom": "~3.3",
"web-ignition": "~2.5",
"w3c-html-validator": "~2.2"
}
}