-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.75 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.75 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
62
63
64
65
66
67
68
69
70
71
{
"name": "@alt-javascript/logger",
"version": "3.0.7",
"description": "A simple configurable logging facade for javascript.",
"author": "Craig Parravicini",
"contributors": [
"Claude (Anthropic)",
"Spring Framework (VMware/Broadcom) — design inspiration and pattern source"
],
"keywords": [
"log",
"logger",
"loglevel",
"facade",
"config",
"configurable",
"slf4j"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"main": "index.js",
"type": "module",
"exports": {
".": {
"default": "./index.js"
}
},
"files": [
"*.js",
"browser/",
"dist/"
],
"scripts": {
"build": "rollup -c rollup.config.js",
"prepublishOnly": "npm run build",
"lint": "npx eslint \"./*.js\" \"./test/**/*.js\" --fix",
"test": "npm run test:unit",
"test:unit": "npm run test:tdd",
"test:tdd": "mocha --require test/fixtures/index.js",
"coverage": "c8 --reporter=json-summary --reporter=text-summary --reporter=lcov npm run test"
},
"license": "MIT",
"dependencies": {
"@alt-javascript/common": "3.0.7"
},
"devDependencies": {
"@alt-javascript/config": "3.0.7",
"c8": "^7.11.0",
"chai": "^4.3.4",
"config": "^4.4.1",
"eslint": "^7.30.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.4",
"mocha": "^11.0.0",
"winston": "^3.3.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alt-javascript/boot.git",
"directory": "packages/logger"
},
"homepage": "https://github.com/alt-javascript/boot/tree/main/packages/logger#readme",
"bugs": {
"url": "https://github.com/alt-javascript/boot/issues"
},
"engines": {
"node": ">=20"
}
}