forked from fullstack-build/tslog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
123 lines (123 loc) · 2.94 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "tslog",
"version": "2.9.1",
"description": "📝 Expressive TypeScript Logger for Node.js: Pretty errors, stack traces, code frames, and JSON output to attachable transports.",
"main": "dist/index",
"typings": "dist/index",
"engines": {
"node": ">=10"
},
"scripts": {
"ts-node": "ts-node example/index.ts",
"ts-node-onchange": "onchange -i \"**/*.ts\" -- npm run ts-node",
"start-ts": "npm run ts-node",
"start": "node dist/example/index.js",
"build": "tsc",
"prepublishOnly": "npm run build && npm run test",
"eslint": "eslint . --ext .ts",
"eslint-fix": "eslint . --ext .ts --fix",
"test": "jest",
"coveralls": "jest --coverage && coveralls < coverage/lcov.info",
"docsify-init": "docsify init ./docs",
"docsify-serve": "cd docs && docsify serve",
"api-extractor": "tsc && mkdir -p ./docs/api_extractor && api-extractor run --local --verbose",
"typedoc": "typedoc",
"generate-all-docs": "npm run api-extractor && typedoc",
"release": "np"
},
"jest": {
"verbose": true,
"preset": "ts-jest",
"testEnvironment": "node",
"collectCoverage": true,
"testMatch": [
"/**/*.test.ts",
"/**/node_modules_test/*.test.ts"
],
"globals": {
"ts-jest": {
"packageJson": "package.json"
}
}
},
"np": {
"yarn": false,
"contents": "."
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fullstack-build/tslog.git"
},
"authors": [
"Eugene Terehov <[email protected]>",
"Dustin Hoffner <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/fullstack-build/tslog/issues"
},
"homepage": "https://tslog.js.org",
"devDependencies": {
"@microsoft/api-extractor": "^7.9.2",
"@rushstack/eslint-config": "^1.0.2",
"@types/jest": "^26.0.4",
"@types/node": "^14.0.23",
"@types/source-map-support": "^0.5.2",
"coveralls": "^3.1.0",
"docsify": "^4.11.4",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"git-hooks": "^1.1.10",
"jest": "^26.1.0",
"np": "^6.3.2",
"onchange": "^7.0.2",
"prettier": "^2.0.5",
"ts-jest": "^26.1.2",
"ts-node": "^8.10.2",
"typedoc": "^0.17.8",
"typescript": "^3.9.3"
},
"dependencies": {
"source-map-support": "^0.5.19"
},
"files": [
"dist"
],
"keywords": [
"logger",
"typescript",
"log level",
"json",
"stacktrace",
"Error.stack",
"call location",
"debug",
"pretty",
"log",
"log4j",
"log4js",
"log4ts",
"print",
"logging",
"bunyan",
"winston",
"stack",
"trace",
"pretty print",
"prettify",
"format",
"human",
"callsites",
"callsite",
"show error",
"handling exceptions",
"pretty log",
"pretty json",
"pretty-error",
"sourcemap"
]
}