-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.17 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
{
"name": "njs-logger",
"author": {
"name": "Lorenzo Vaccher",
"email": "[email protected]",
"url": "https://lorenzovaccher.com"
},
"license": "Apache-2.0",
"version": "1.3.0",
"main": "index.js",
"type": "module",
"description": "Library focused on the management and manipulation of logs. This allows to save on certain files and to show any errors or other useful information on the console.",
"homepage": "https://github.com/LorenzoVaccher01/njs-logger.git",
"engines": {
"node": ">=4"
},
"bugs": {
"url": "https://github.com/LorenzoVaccher01/njs-logger/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/LorenzoVaccher01/njs-logger.git"
},
"scripts": {
"dev": "nodemon ./index.js",
"test": "nodemon ./test/index.js"
},
"keywords": [
"logger",
"filesystem",
"log",
"console",
"terminal",
"server",
"cron",
"email",
"cli"
],
"dependencies": {
"archiver": "^5.2.0",
"ejs": "^3.1.6",
"fs": "0.0.1-security",
"jsonschema": "^1.4.0",
"node-schedule": "^1.3.2",
"nodemailer": "^6.5.0"
},
"devDependencies": {
"nodemon": "^2.0.6"
}
}