-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 1.08 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
{
"name": "nftables_firewall.js",
"version": "0.0.1",
"description": "Is a test / proof of concept firewall using NodeJS and nftables/nfqueue.",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dmblack/nftables_firewall.js.git"
},
"keywords": [
"firewall",
"nfqueue",
"nftables",
"libpcap",
"pcap"
],
"author": "Dustyn Blackmore <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dmblack/nftables_firewall.js/issues"
},
"homepage": "https://github.com/dmblack/nftables_firewall.js#readme",
"dependencies": {
"nfqueue": "https://github.com/dmblack/node-nfqueue.git",
"pcap": "https://github.com/dmblack/node_pcap.git"
},
"devDependencies": {
"eslint": "^5.7.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"standard": "^12.0.1"
}
}