-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.29 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
54
55
56
57
58
59
{
"name": "precise-time-ntp",
"version": "2.1.2",
"description": "⏰ Simple NTP time sync for Node.js - Auto-drift, WebSocket & HTML clocks",
"main": "index.js",
"scripts": {
"test": "node test.js",
"lint": "eslint index.js test.js",
"start": "node examples/websocket.js",
"basic": "node examples/basic.js",
"auto-sync": "node examples/auto-sync.js",
"websocket": "node examples/websocket.js"
},
"keywords": [
"ntp",
"time",
"synchronization",
"clock",
"precise-time",
"time-sync",
"network-time",
"websocket",
"real-time",
"timestamp",
"html-clock",
"web-clock",
"synchronized-time",
"browser-clock",
"time-server"
],
"author": "TheHuman00",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/TheHuman00/precise-time-ntp.git"
},
"bugs": {
"url": "https://github.com/TheHuman00/precise-time-ntp/issues"
},
"homepage": "https://github.com/TheHuman00/precise-time-ntp#readme",
"files": [
"index.js",
"examples/",
"docs/",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"ws": "^8.17.0"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"eslint": "^9.39.4",
"globals": "^17.6.0"
}
}