-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 910 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 910 Bytes
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
{
"name": "debug-factory",
"version": "1.0.3",
"description": "Factory for creating debug loggers",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "tsc",
"test": "jest"
},
"author": "Jonathan Meyer <jon@stej.com> (http://stej.com)",
"repository": {
"type": "git",
"url": "git+https://github.com/jonathan-meyer/debug-factory.git"
},
"keywords": [
"debug",
"logger",
"log4js"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/jonathan-meyer/debug-factory/issues"
},
"homepage": "https://github.com/jonathan-meyer/debug-factory#readme",
"dependencies": {
"debug": "^4.3.4"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/debug": "^4.1.12",
"@types/jest": "^29.5.11",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
}
}