-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.24 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.24 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
{
"name": "ntp-packet-parser",
"version": "0.5.0",
"description": "A parser for NTP UDP packets",
"main": "dist/index.js",
"scripts": {
"prepublishOnly": "yarn prettier:lint && yarn build",
"test": "ts-mocha --recursive test/**/*.spec.ts",
"build": "tsc",
"prettier": "prettier --write src/**/*.ts test/**/*.{js,ts}",
"prettier:lint": "prettier --list-different src/**/*.ts test/**/*.{js,ts}"
},
"keywords": [
"ntp",
"clock",
"sync",
"parser",
"udp"
],
"author": "Laurens Stötzel",
"repository": {
"type": "git",
"url": "https://github.com/buffcode/ntp-packet-parser.git"
},
"devDependencies": {
"@types/mocha": "10.0.10",
"@types/node": "^18 || ^20 || ^22",
"mocha": "11.7.5",
"prettier": "3.8.1",
"ts-mocha": "11.1.0",
"ts-node": "10.9.2",
"typescript": "5.9.3"
},
"files": [
"dist",
"src",
"package.json",
"tsconfig.json"
],
"license": "GPL-3.0",
"prettier": {
"printWidth": 120,
"trailingComma": "es5"
},
"engines": {
"node": "^18 || ^20 || ^22"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}