-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.51 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.51 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
{
"name": "@ci-dokumentor/cli",
"description": "Command Line Interface for CI Dokumentor - Automated documentation generator for CI/CD components",
"version": "0.2.2",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"ci-dokumentor": "./dist/bin/ci-dokumentor.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hoverkraft-tech/ci-dokumentor.git",
"directory": "packages/cli"
},
"homepage": "https://github.com/hoverkraft-tech/ci-dokumentor",
"bugs": {
"url": "https://github.com/hoverkraft-tech/ci-dokumentor/issues"
},
"license": "MIT",
"keywords": [
"cli",
"documentation",
"ci-cd",
"github-actions",
"markdown",
"automation"
],
"author": "hoverkraft-tech",
"files": [
"dist",
"README.md"
],
"exports": {
"./package.json": "./package.json",
".": {
"development": "./src/index.ts",
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"dependencies": {
"commander": "^14.0.3",
"inversify": "^8.1.0",
"reflect-metadata": "^0.2.2"
},
"devDependencies": {
"@ci-dokumentor/cicd-github-actions": "workspace:*",
"@ci-dokumentor/cicd-gitlab-ci": "workspace:*",
"@ci-dokumentor/core": "workspace:*",
"@ci-dokumentor/repository-git": "workspace:*",
"@ci-dokumentor/repository-github": "workspace:*",
"@ci-dokumentor/repository-gitlab": "workspace:*"
}
}