-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.32 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.32 KB
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
{
"name": "@momsfriendlydevco/debug",
"version": "1.5.0",
"description": "Isomorphic, chainable log / debugging utility",
"main": "lib/debugNode.js",
"browser": "lib/debugBrowser.js",
"type": "module",
"scripts": {
"lint": "eslint lib test",
"test": "mocha"
},
"keywords": [
"debug",
"log",
"logger"
],
"repository": {
"type": "git",
"url": "git+https://github.com/MomsFriendlyDevCo/Debug.git"
},
"bugs": {
"url": "https://github.com/MomsFriendlyDevCo/Debug/issues"
},
"homepage": "https://github.com/MomsFriendlyDevCo/Debug#readme",
"author": "Matt Carter <m@ttcarter.com>",
"license": "MIT",
"engineStrict": true,
"engines": {
"node": ">=14.0.0"
},
"exports": {
".": {
"browser": "./lib/debugBrowser.js",
"node": "./lib/debugNode.js",
"default": "./lib/debugBase.js"
}
},
"imports": {
"#lib/*": "./lib/*.js"
},
"eslintConfig": {
"extends": "eslint:recommended",
"env": {
"es6": true,
"mocha": true,
"node": true
},
"parserOptions": {
"ecmaVersion": 13,
"sourceType": "module"
}
},
"devDependencies": {
"chai": "^4.3.6",
"eslint": "^8.16.0",
"mocha": "^10.0.0",
"strip-ansi": "^7.0.1"
},
"dependencies": {
"chalk": "^5.0.1",
"lodash": "^4.17.21"
}
}