ntp-packet-parser
Version:
A parser for NTP UDP packets
49 lines (48 loc) • 1.1 kB
JSON
{
"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.1.0",
"prettier": "3.5.3",
"ts-mocha": "11.1.0",
"ts-node": "10.9.2",
"typescript": "5.8.3"
},
"files": [
"dist",
"src",
"package.json",
"tsconfig.json"
],
"license": "GPL-3.0",
"prettier": {
"printWidth": 120,
"trailingComma": "es5"
},
"engines": {
"node": "^18 || ^20 || ^22"
}
}