-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
90 lines (90 loc) · 1.86 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
{
"name": "typedoc-plugin-versions",
"version": "0.2.4",
"description": "It keeps track of your document builds and provides a select menu for versions",
"main": "src/index",
"scripts": {
"test": "prettier -c . && nyc mocha",
"build": "npx tsc && node ./build.js",
"docs": "typedoc",
"docs:build": "npm run build && typedoc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/citkane/typedoc-plugin-versions.git"
},
"homepage": "https://github.com/citkane/typedoc-plugin-versions#readme",
"engines": {
"npm": ">=6.0.0",
"node": ">=14.0.0"
},
"keywords": [
"typedoc",
"plugin",
"typedoc-plugin",
"versions",
"versioning",
"typedocplugin"
],
"author": "Michael Jonker",
"contributors": [
"Tobey Blaber (https://github.com/toebeann)"
],
"license": "MIT",
"dependencies": {
"fs-extra": "^10.1.0",
"semver": "^7.3.7"
},
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/fs-extra": "^9.0.13",
"@types/mocha": "^9.1.1",
"@types/node": "^18.6.2",
"@types/prettier": "^2.7.0",
"@types/semver": "^7.3.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",
"ts-node": "^10.9.1",
"typedoc": "^0.23.28",
"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",
"html"
],
"all": true,
"report-dir": "./test/coverage",
"temp-dir": "./test/.nyc_output"
}
}