-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.09 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
{
"name": "ntp-packet-parser",
"version": "0.4.1",
"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.0",
"@types/node": "^14 || ^16 || ^18 || ^20",
"mocha": "^10.1.0",
"prettier": "^3.0.2",
"ts-mocha": "^10.0.0",
"ts-node": "^10.4.0",
"typescript": "^5.1.6"
},
"files": [
"dist",
"src",
"package.json",
"tsconfig.json"
],
"license": "GPL-3.0",
"prettier": {
"printWidth": 120,
"trailingComma": "es5"
},
"engines": {
"node": "^14 || ^16 || ^18 || ^20"
}
}