-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.04 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.04 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
{
"name": "@typhonjs-utils/logger-color",
"description": "Provides ANSI color logging.",
"version": "0.2.0",
"author": "Michael Leahy <support@typhonjs.io> (https://github.com/typhonrt)",
"type": "module",
"main": "src/ColorLogger.js",
"module": "src/ColorLogger.js",
"exports": {
".": {
"types": "./src/ColorLogger.d.ts",
"import": "./src/ColorLogger.js"
},
"./plugin": {
"types": "./src/plugin/index.d.ts",
"import": "./src/plugin/index.js"
},
"./package.json": "./package.json"
},
"contributors": [
"Michael Leahy <support@typhonjs.io> (https://github.com/typhonrt)"
],
"devDependencies": {
"@typhonjs-build-test/esm-d-ts": "^0.3.0-next.11",
"@typhonjs-config/eslint-config": "^0.6.0",
"@typhonjs-plugin/manager": "^0.2.0",
"@typhonjs-typedoc/typedoc-pkg": "^0.4.0",
"@typhonjs-utils/error-parser": "^0.0.10",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"eslint": "^8.57.0",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=18"
},
"files": [
"/src"
],
"homepage": "https://github.com/typhonjs-node-utils/logger-color#readme",
"keywords": [
"typhonjs",
"utils",
"logger",
"color"
],
"typedocOptions": {
"dmtLinksService": {
"Discord": "https://typhonjs.io/discord/",
"GitHub": "https://github.com/typhonjs-node-utils/logger-color",
"NPM": "https://www.npmjs.com/package/@typhonjs-utils/logger-color"
}
},
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/typhonjs-node-utils/logger-color.git"
},
"bugs": "https://github.com/typhonjs-node-utils/logger-color/issues",
"apidocs": "https://typhonjs-node-utils.github.io/logger-color/",
"scripts": {
"docs": "typedoc-pkg --api-link es",
"eslint": "eslint .",
"posttest": "npm run eslint",
"prepublishOnly": "npm run test",
"test": "vitest --coverage",
"test-ui": "vitest --ui --coverage",
"types": "esm-d-ts gen src/ColorLogger.js && esm-d-ts gen src/plugin/index.js"
}
}