nodejs-traceroute-ts
Version:
Node.js wrapper around tracert and traceroute process - TypeScript port
40 lines (39 loc) • 1.01 kB
JSON
{
"name": "nodejs-traceroute-ts",
"version": "1.2.1",
"description": "Node.js wrapper around tracert and traceroute process - TypeScript port",
"main": "build/index.js",
"scripts": {
"example": "npm run build && node ./build/example.js",
"start": "node .",
"build": "npx tsc",
"watch": "tsnd --respawn ./src/index.ts",
"dev": "npm run watch",
"lint": "prettier . && eslint . --ext .ts"
},
"author": "Matus Barta",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/matus-barta/nodejs-traceroute-ts.git"
},
"keywords": [
"tracert",
"traceroute"
],
"dependencies": {
"validator": "^13.7.0"
},
"devDependencies": {
"@types/node": "^18.6.1",
"@types/validator": "^13.7.4",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.1.0",
"prettier": "^2.7.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4"
}
}