-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
37 lines (37 loc) · 912 Bytes
/
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
{
"name": "nodejs-traceroute",
"version": "2.0.1",
"description": "Node.js wrapper around tracert and traceroute process",
"main": "lib/index.js",
"scripts": {
"build": "tsc",
"example": "ts-node example.ts",
"lint": "eslint --fix src",
"test": "jest"
},
"author": "Zulhilmi Mohamed Zainuddin",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/zulhilmizainuddin/nodejs-traceroute.git"
},
"keywords": [
"tracert",
"traceroute"
],
"dependencies": {
"validator": "^13.7.0"
},
"devDependencies": {
"@types/jest": "^29.2.3",
"@types/node": "^18.11.9",
"@types/validator": "^13.7.10",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"eslint": "^8.27.0",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}