-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.84 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
{
"name": "@typhonjs-utils/logger-color",
"description": "Provides ANSI color logging.",
"version": "0.1.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/node": "^0.0.11",
"@typhonjs-plugin/manager": "^0.1.0",
"@typhonjs-typedoc/typedoc-pkg": "^0.0.2",
"@typhonjs-utils/error-parser": "^0.0.9"
},
"engines": {
"node": ">=14.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": "github:typhonjs-node-utils/logger-color",
"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 esm",
"eslint": "eslint .",
"posttest": "npm run eslint",
"prepublishOnly": "npm run test",
"test": "c8 --reporter=lcov --reporter=text-summary mocha -colors \"test/src/**/*.test.js\"",
"types": "esm-d-ts gen src/ColorLogger.js && esm-d-ts gen src/plugin/index.js"
}
}