-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 787 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 787 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
41
{
"name": "@tadashi/debug",
"version": "4.2.0",
"description": "Small debugging utility",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/lagden/debug.git"
},
"keywords": [
"debug",
"log",
"error",
"prefix"
],
"author": "Thiago Lagden",
"license": "MIT",
"homepage": "https://github.com/lagden/debug#readme",
"bugs": {
"url": "https://github.com/lagden/debug/issues"
},
"files": [
"src",
"LICENSE",
"README.md"
],
"main": "src/debug.js",
"type": "module",
"exports": {
".": "./src/debug.js"
},
"scripts": {
"test": "env DEBUG_COLORS=1 c8 --reporter=text --reporter=lcov node --test test/*.spec.js"
},
"peerDependencies": {
"debug": ">= 4 < 5",
"supports-color": ">= 8 < 11"
},
"devDependencies": {
"c8": "10.1.3"
}
}