-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.67 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.67 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
{
"name": "debug-fabulous",
"version": "2.0.71",
"description": "visionmedia debug extensions rolled into one",
"keywords": [
"debug",
"lazy",
"lazy-eval"
],
"repository": {
"type": "git",
"url": "git+https://github.com/brickhouse-tech/debug-fabulous.git"
},
"license": "MIT",
"author": "Nicholas McCready",
"contributors": [
"Joe Ibershoff (https://github.com/zacronos)"
],
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"bench": "npm run build && vitest bench",
"build": "rm -rf lib && npx tsc",
"docs:api:markdown": "npx typedoc --theme markdown --exclude ./src/test --out ./docs/api ./src",
"docs:api:website": "npx typedoc --exclude ./src/test --out docs ./src",
"lint": "npm run build && eslint *.js src test --color",
"prepack": "npm run build",
"prepare": "npx sort-package-json",
"test": "npm run build && vitest run",
"test:ci": "npm run build && vitest run --coverage",
"preversion": "npm run build"
},
"dependencies": {
"debug": "4.4.3"
},
"devDependencies": {
"@commitlint/cli": "^20",
"@commitlint/config-conventional": "^20",
"@eslint/js": "^10.0.1",
"@types/debug": "^4",
"@types/node": "^25.5.0",
"@typescript-eslint/eslint-plugin": "^8.55.1-alpha.4",
"@typescript-eslint/parser": "^8.55.1-alpha.4",
"@vitest/eslint-plugin": "^1.6.9",
"commitlint": "20",
"config": "^4.0.0",
"eslint": "10",
"globals": "^17.3.0",
"hook-std": "4.0",
"JSONStream": "1.X",
"prettier": "^3.6.2",
"sort-package-json": "^3.0.0",
"typescript": "^6.0.2",
"vitest": "^4.0.18"
},
"engines": {
"node": ">= 20"
}
}