-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.19 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
{
"name": "junta",
"version": "1.0.2",
"description": "Notification System: Port Monitoring, User Authorization Monitoring, Program Execution Monitoring",
"main": "src/index.js",
"type": "module",
"scripts": {
"start": "./node_modules/.bin/nodemon -V --ignore '*.json' 'src' || touch src/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint src/ --cache --ignore-pattern .gitignore",
"fix": "eslint src/ --ignore-pattern .gitignore --fix"
},
"license": "MIT",
"dependencies": {
"@slack/web-api": "^6.8.1",
"dotenv": "^16.0.3",
"nodemon": "^2.0.22",
"tail": "^2.2.6",
"the-log": "^3.0.1"
},
"devDependencies": {
"eslint": "^8.41.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-security": "^1.7.1"
},
"repository": {
"type": "git",
"url": "https://github.com/ivanoff/junta.git"
},
"keywords": [
"Notification System",
"Monitoring",
"Port Monitoring",
"User Authorization Monitoring",
"Program Execution Monitoring"
],
"engines": {
"node": ">=18"
},
"author": "Dimitry Ivanov <[email protected]> # curl -A cv ivanoff.org.ua"
}