-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.05 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "typedoc-plugin-hot-dev",
"version": "0.0.12",
"description": "Provides a Typedoc hot theme development environment",
"main": "./src/index",
"scripts": {
"docs": "typedoc",
"build": "npx tsc && node build.js",
"test": "prettier -c . && nyc mocha",
"test:testscript": "echo test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/citkane/typedoc-plugin-hot-dev.git"
},
"keywords": [
"typedoc",
"plugin",
"typedoc-plugin",
"theme",
"development",
"hot"
],
"author": "Michael Jonker",
"license": "MIT",
"bugs": {
"url": "https://github.com/citkane/typedoc-plugin-hot-dev/issues"
},
"homepage": "https://github.com/citkane/typedoc-plugin-hot-dev#readme",
"engines": {
"npm": ">=7.0.0",
"node": ">=16.0.0"
},
"bin": {
"hot-dev": "./src/bin/hot.js"
},
"dependencies": {
"browser-sync": "^2.27.10",
"chokidar": "^3.5.3",
"fs-extra": "^10.1.0",
"yargs": "^17.5.1"
},
"devDependencies": {
"@types/browser-sync": "^2.26.3",
"@types/chai": "^4.3.1",
"@types/fs-extra": "^9.0.13",
"@types/mocha": "^9.1.1",
"@types/node": "^18.0.5",
"@types/prettier": "^2.7.0",
"@types/sinon": "^10.0.12",
"@typescript-eslint/eslint-plugin": "^5.34.0",
"@typescript-eslint/parser": "^5.34.0",
"chai": "^4.3.6",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"prettier": "^2.7.1",
"sinon": "^14.0.0",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.1",
"typedoc": "^0.23.24",
"typedoc-plugin-versions": "^0.1.1",
"typedoc-theme-yaf": "^0.0.2",
"typescript": "^4.7.4"
},
"peerDependencies": {
"typedoc": "^0.23"
},
"mocha": {
"extension": [
"ts"
],
"file": "./test/index.spec.ts",
"require": [
"ts-node/register/transpile-only",
"source-map-support/register",
"./test/hooks.ts"
],
"exit": true
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"include": [
"src/**/*.ts"
],
"reporter": [
"clover",
"text"
],
"all": true,
"report-dir": "./test/coverage",
"temp-dir": "./test/.nyc_output"
}
}