-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.23 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"main": "lib/binding.js",
"dependencies": {
"detect-libc": "^2.0.1",
"dotenv": "^16.0.3",
"filesize": "^10.0.5",
"gauge": "^5.0.0",
"got": "^12.4.1",
"gunzip-maybe": "^1.4.2",
"node-addon-api": "^5.0.0",
"tar-fs": "^2.1.1",
"uuid": "^8.3.2"
},
"scripts": {
"test": "jest --coverage=true && node test/examples/runAll",
"install": "node install/ns3.js && node-gyp rebuild",
"prepare": "husky install"
},
"engines": {
"node": ">=14.15.0"
},
"gypfile": true,
"name": "net-runner-engine",
"version": "2.0.5",
"author": "Valentina K <sabrinarempel7@gmail.com>",
"license": "GPL-3.0",
"description": "Node.js ns3 wrapper",
"homepage": "https://github.com/vaguue/net-runner-engine",
"repository": {
"type": "git",
"url": "git://github.com/vaguue/net-runner-engine"
},
"os": [
"linux"
],
"cpu": [
"x64"
],
"binary": {
"napi_versions": [
7
]
},
"keywords": [
"ns3",
"ns-3",
"ns3-simulator",
"network simulator",
"network-simulator",
"network",
"udp",
"tcp",
"routing",
"packet",
"ip",
"ipv4",
"simulator"
],
"devDependencies": {
"husky": "^8.0.2",
"jest": "^29.0.1"
}
}