-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 947 Bytes
/
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
{
"name": "knight-log",
"version": "2.0.0-rc.3",
"description": "A log library with module scoped log level settings and improved log level names",
"main": "lib/log.js",
"types": "lib/log.d.ts",
"files": [
"lib/**/*"
],
"browser": {
"fs": false,
"path": false
},
"scripts": {
"test": "mocha -r ts-node/register \"test/**/*.test.ts\"",
"build": "rm -rf lib && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/c0deritter/knight-log.git"
},
"keywords": [
"logger logging"
],
"author": "Coderitter GmbH",
"bugs": {
"url": "https://github.com/c0deritter/knight-log/issues"
},
"homepage": "https://github.com/c0deritter/knight-log#readme",
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@types/node": "^20.2.5",
"chai": "^4.3.7",
"mocha": "^10.2.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
}
}