-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 2.6 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
99
100
101
102
103
104
105
{
"name": "typedoc-plugin-versions-cli",
"version": "0.1.12",
"description": "A companion CLI tool for typedoc-plugins-versions.",
"main": "./dist/index.js",
"bin": {
"typedoc-plugin-versions": "./dist/cli.js",
"typedoc-plugin-versions-cli": "./dist/cli.js",
"typedoc-versions": "./dist/cli.js",
"tpv": "./dist/cli.js"
},
"types": "./types/index.d.ts",
"scripts": {
"test": "jest",
"pretest": "npm run docs",
"posttest": "npm run format:check",
"format": "prettier -w . --ignore-path .gitignore",
"format:check": "prettier -c . --ignore-path .gitignore",
"build": "tsc",
"prebuild": "npm run format",
"docs": "typedoc",
"postdocs": "npm run docs:purge",
"docs:purge": "npm run tpv purge -- -y --patch 3",
"postdocs:purge": "npm run docs:sync",
"docs:sync": "npm run tpv sync -- -y --symlinks",
"tpv": "ts-node src/cli.ts",
"tpv:dist": "node dist/cli.js"
},
"keywords": [
"typedoc-plugin-versions",
"cli",
"command",
"cicd",
"typedoc",
"utility",
"ci/cd",
"ci-cd",
"ci",
"cd",
"cid"
],
"author": "Tobey Blaber (https://github.com/toebeann)",
"homepage": "https://toebeann.github.io/typedoc-plugin-versions-cli",
"repository": {
"type": "git",
"url": "https://github.com/toebeann/typedoc-plugin-versions-cli.git"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/toebeann"
},
{
"type": "individual",
"url": "https://paypal.me/tobeyblaber"
}
],
"license": "MIT",
"files": [
"dist/**/*.*js",
"dist/**/*.*js.map",
"types/**/*.d.*ts",
"types/**/*.d.*ts.map"
],
"engines": {
"node": ">=16"
},
"os": [
"win32",
"linux",
"darwin"
],
"dependencies": {
"async": "^3.2.4",
"cli-diff": "^1.0.0",
"prompts": "^2.4.2",
"semver": "^7.3.7",
"yargs": "^17.5.1"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.3",
"@types/async": "^3.2.15",
"@types/fs-extra": "^11.0.0",
"@types/jest": "^29.0.3",
"@types/prompts": "^2.0.14",
"@types/semver": "^7.3.12",
"@types/yargs": "^17.0.12",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"fs-extra": "^11.1.0",
"jest": "^29.0.3",
"prettier": "^2.7.1",
"ts-jest": "^29.0.1",
"ts-node": "^10.9.1",
"typedoc": "^0.23.15",
"typedoc-plugin-versions": "^0.2.1",
"typescript": "^4.8.4"
},
"peerDependencies": {
"typedoc": "^0.23",
"typedoc-plugin-versions": "^0.2"
}
}