-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 953 Bytes
/
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
{
"name": "logena",
"version": "1.0.2",
"description": "Jena Logger",
"main": "./logger.js",
"types": "./logger.d.ts",
"scripts": {
"build": "eslint . --fix && tsc && uglifyjs logger.js --comments all -o logger.js",
"test": "npm run build && node src/tests.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/abadima/logena.git"
},
"keywords": [
"colors",
"console",
"javascript",
"json",
"logger",
"nodejs",
"simple",
"string",
"timestamps"
],
"author": "Abadima",
"license": "MIT",
"bugs": {
"url": "https://github.com/abadima/logena/issues"
},
"homepage": "https://github.com/abadima/logena#readme",
"devDependencies": {
"@eslint/js": "^9.12.0",
"@types/node": "^22.7.5",
"eslint": "^9.12.0",
"globals": "^15.11.0",
"typescript-eslint": "^8.9.0",
"uglify-js": "^3.19.3"
},
"engines": {
"node": ">=14.0.0"
}
}