-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 859 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 859 Bytes
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
{
"name": "node-network-scanner",
"repository": {
"type": "git",
"url": "https://github.com/yagizhanNY/network-scanner"
},
"version": "1.0.8",
"description": "Scan network and find available devices.",
"main": "dist/index.js",
"files": [
"dist"
],
"keywords": [
"network-scan",
"lan",
"ping",
"mac-address"
],
"scripts": {
"build": "tsc",
"start": "npx tsc && node dist/index",
"test": "npx tsc && jest /dist"
},
"author": "Yagizhan Necat YAKALI",
"license": "MIT",
"dependencies": {
"get-ip-range": "^4.0.1",
"ping": "^0.4.2",
"promise-socket": "^7.0.0"
},
"devDependencies": {
"@types/ip": "^1.1.0",
"@types/jest": "^29.4.0",
"@types/ping": "^0.4.1",
"jest": "^29.4.3",
"proxyquire": "^2.1.3",
"sinon": "^15.0.1",
"typescript": "^4.9.5"
}
}