-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
79 lines (79 loc) · 1.88 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "doxdox-renderer-bootstrap",
"description": "Bootstrap renderer for doxdox.",
"version": "4.0.0-preview.24",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"engines": {
"node": ">=20"
},
"dependencies": {
"highlight.js": "11.10.0",
"markdown-it": "14.1.0",
"markdown-table": "3.0.4"
},
"peerDependencies": {
"doxdox-core": "4.0.0-preview.24"
},
"peerDependenciesMeta": {
"doxdox-core": {
"optional": false
}
},
"devDependencies": {
"@eslint/js": "9.13.0",
"@types/jest": "29.5.14",
"@types/markdown-it": "14.1.2",
"@types/node": "22.8.5",
"@typescript-eslint/eslint-plugin": "8.12.2",
"@typescript-eslint/parser": "8.12.2",
"eslint": "9.13.0",
"jest": "29.7.0",
"rimraf": "6.0.1",
"ts-jest": "29.2.5",
"ts-jest-resolver": "2.0.1",
"typescript": "5.6.3",
"typescript-eslint": "8.12.2"
},
"scripts": {
"test": "npx cross-env@7 NODE_OPTIONS=--experimental-vm-modules jest --runInBand --passWithNoTests",
"test-update": "npx cross-env@7 NODE_OPTIONS=--experimental-vm-modules jest --runInBand --passWithNoTests --updateSnapshot",
"build": "rimraf dist/ && tsc",
"lint": "eslint"
},
"jest": {
"collectCoverage": true,
"extensionsToTreatAsEsm": [
".ts"
],
"transform": {
"^.+\\.ts$": [
"ts-jest",
{
"useESM": true
}
]
},
"resolver": "ts-jest-resolver",
"testRegex": ".*.test.ts$"
},
"keywords": [
"doxdox",
"documentation",
"bootstrap"
],
"authors": [
{
"name": "Scott Doxey",
"email": "[email protected]",
"homepage": "http://scottdoxey.com/"
}
],
"license": "MIT",
"homepage": "https://github.com/docsbydoxdox/doxdox",
"repository": {
"type": "git",
"url": "git://github.com/docsbydoxdox/doxdox.git"
}
}