-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
70 lines (70 loc) · 1.69 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "missionlog",
"version": "3.0.2",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.esm.js",
"require": "./dist/index.cjs.js"
}
},
"main": "./dist/index.cjs.js",
"module": "./dist/index.esm.js",
"types": "./dist/index.d.ts",
"description": "🚀 lightweight TypeScript abstract logger • level based filtering and optional tagging • supports both ESM & CJS",
"files": [
"dist/index.d.ts",
"dist/index.cjs.js",
"dist/index.cjs.js.map",
"dist/index.esm.js",
"dist/index.esm.js.map"
],
"scripts": {
"build": "npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "node build.js",
"coverage": "jest --coverage ./tests && coveralls < coverage/lcov.info",
"lint": "tsc --noEmit",
"release": "standard-version",
"test": "jest --no-cache ./tests"
},
"homepage": "https://github.com/rmartone/missionlog#readme",
"repository": {
"type": "git",
"url": "https://github.com/rmartone/missionlog"
},
"keywords": [
"log",
"logger",
"logging",
"lightweight",
"ts-log",
"abstract",
"typescript",
"esm",
"cjs",
"console",
"structured-logging",
"configurable",
"tags",
"categories",
"filtering",
"log-levels"
],
"engines": {
"node": ">=18.0.0"
},
"author": "Ray Martone <rmartone@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.14",
"coveralls": "^3.1.1",
"esbuild": "^0.25.0",
"jest": "^29.7.0",
"prettier": "^3.5.2",
"standard-version": "^9.5.0",
"ts-jest": "^29.2.6",
"typescript": "^5.8.2"
}
}