-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 988 Bytes
/
package.json
File metadata and controls
48 lines (48 loc) · 988 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
41
42
43
44
45
46
47
48
{
"name": "net-honeypot",
"version": "1.1.0",
"description": "detect port scans",
"scripts": {
"start": "node index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ICarryTheDustOfAJourney/net-honeypot.git"
},
"keywords": [
"portscan",
"honeypot",
"whitelist",
"blacklist"
],
"author": "Volker Kinkelin",
"license": "MIT",
"bugs": {
"url": "https://github.com/ICarryTheDustOfAJourney/net-honeypot/issues"
},
"homepage": "https://github.com/ICarryTheDustOfAJourney/net-honeypot#readme",
"eslintConfig": {
"env": {
"node": true
},
"parserOptions": {
"ecmaVersion": 6
},
"extends": "eslint:recommended",
"rules": {
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"double"
],
"semi": [
"error",
"always"
]
}
}
}