-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
executable file
·59 lines (59 loc) · 1.22 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
{
"name": "netfilter",
"version": "0.3.3",
"description": "Packet filtering framework. Wrapper to provide netfilter capabilities from Node.js",
"main": "index.js",
"keywords": [
"stateless",
"stateful",
"packet",
"filter",
"filtering",
"network address translation",
"nat",
"napt",
"pat",
"network address translation",
"port address translation",
"iptables",
"ipset",
"conntrack",
"firewall",
"masquerade",
"masquerading",
"policy",
"mangle",
"mangling",
"alias",
"set"
],
"dependencies": {
"async": "~0.9.0",
"has": "0.0.1",
"process-queue": "^1.0.1",
"shell-quote": "^1.4.2"
},
"devDependencies": {
"mocha": "^1.21.4",
"should": "^4.0.4"
},
"engines": {
"node": ">=0.8.0"
},
"homepage": "https://github.com/diosney/node-netfilter",
"bugs": {
"url": "https://github.com/diosney/node-netfilter/issues"
},
"author": {
"name": "Diosney Sarmiento",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/diosney/node-netfilter.git"
},
"scripts": {
"test": "mocha --recursive --timeout 5000 --reporter spec test/"
}
}