-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.43 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.43 KB
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
51
52
53
54
55
56
57
58
59
60
61
{
"name": "logena",
"version": "1.1.0",
"description": "Simply Jena's nodejs logger",
"main": "./dist/logger.js",
"types": "./dist/logger.d.ts",
"exports": {
".": {
"types": "./dist/logger.d.ts",
"import": "./dist/logger.js",
"require": "./dist/logger.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "eslint . --fix && tsc && uglifyjs dist/logger.js --comments all -o dist/logger.js",
"test": "npm run build && npm run test:regression",
"test:regression": "node tests/logger.test.js",
"test:perf": "node tests/logger.test.js",
"beta": "npm publish --tag beta"
},
"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/eslintrc": "^3.3.5",
"@eslint/js": "^9.39.4",
"@types/node": "^25.5.0",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.58.0",
"eslint": "^9.39.4",
"globals": "^17.4.0",
"typescript-eslint": "^8.58.0",
"uglify-js": "^3.19.3"
},
"engines": {
"node": ">=14.0.0"
}
}