-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 726 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 726 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
{
"name": "icmp",
"version": "2.0.1",
"description": "Internet Control Message Protocol in Node",
"main": "index.js",
"directories": {
"example": "example"
},
"scripts": {
"test": "mocha"
},
"contributors": [
{
"name": "Nathanael Demacon",
"email": "nathanael.dmc@outlook.fr"
}
],
"repository": {
"type": "git",
"url": "git://github.com/QuantumSheep/node-icmp.git"
},
"keywords": [
"icmp",
"ping",
"echo",
"monitor",
"monitoring",
"net",
"network"
],
"author": "Nathanael Demacon <nathanael.dmc@outlook.fr>",
"license": "MIT",
"dependencies": {
"raw-socket": "^1.7.0"
},
"devDependencies": {
"mocha": "^9.1.3"
}
}