-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
48 lines (48 loc) · 1.28 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
{
"name": "ssh-log-to-influx",
"version": "1.0.0",
"description": "Sends SSH authentication logs to influxdb with geohashing IP",
"main": "src/index.js",
"scripts": {
"start": "babel-node src/index.js",
"build": "babel src --out-dir dist",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/acouvreur/ssh-log-to-influx.git"
},
"keywords": [
"ssh",
"influx",
"grafana"
],
"author": "Alexis Couvreur",
"license": "ISC",
"bugs": {
"url": "https://github.com/acouvreur/ssh-log-to-influx/issues"
},
"homepage": "https://github.com/acouvreur/ssh-log-to-influx#readme",
"dependencies": {
"axios": "^0.19.2",
"influx": "^5.6.2",
"log4js": "^6.3.0",
"net": "^1.0.2",
"ngeohash": "^0.6.3"
},
"devDependencies": {
"@babel/cli": "^7.10.3",
"@babel/core": "^7.11.0",
"@babel/node": "^7.10.3",
"@babel/plugin-transform-modules-commonjs": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.11.0",
"@babel/polyfill": "^7.10.1",
"@babel/preset-env": "^7.11.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.2.3",
"@types/jest": "^26.0.8",
"jest": "^26.2.2",
"semantic-release": "^17.4.4"
}
}