-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.25 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
{
"name": "smart-update-websockets",
"description": "Example WebSockets server and client showing throttled live updates using dna-engine",
"version": "1.0.0",
"license": "MIT",
"type": "module",
"module": "server.js",
"exports": "./server.js",
"repository": {
"type": "git",
"url": "git+https://github.com/dna-engine/smart-update-websockets.git"
},
"homepage": "https://github.com/dna-engine/smart-update-websockets",
"bugs": "https://github.com/dna-engine/smart-update-websockets/issues",
"author": "Center Key (https://centerkey.com)",
"keywords": [
"node",
"websockets",
"dna-engine",
"javascript"
],
"jshintConfig": {
"esversion": 11,
"strict": "implied",
"eqeqeq": true,
"undef": true,
"unused": true,
"browser": true,
"node": true,
"globals": {
"dna": false,
"WebSocket": true
}
},
"scripts": {
"test": "jshint . --exclude-path .gitignore"
},
"dependencies": {
"bufferutil": "~4.0",
"express": "~4.21",
"jshint": "~2.13",
"ws": "~8.18"
},
"devDependencies": {
"@fortawesome/fontawesome-free": "~6.6",
"dna-engine": "~3.2",
"web-ignition": "~2.2"
}
}