-
Notifications
You must be signed in to change notification settings - Fork 71
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.71 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.71 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
58
59
60
61
62
63
64
65
66
67
{
"name": "@bitnami/readme-generator-for-helm",
"version": "3.0.1",
"description": "Autogenerate READMEs tables and OpenAPI schemas for Helm Charts",
"main": "./index.js",
"type": "module",
"engines": {
"node": ">=24.0.0 <25.0.0"
},
"scripts": {
"test": "NODE_OPTIONS=\"${NODE_OPTIONS} --experimental-vm-modules\" npx jest --silent",
"test-ci": "NODE_OPTIONS=\"${NODE_OPTIONS} --experimental-vm-modules\" npx jest --ci --reporters 'github-actions' --silent",
"lint": "./node_modules/eslint/bin/eslint.js ."
},
"bin": {
"readme-generator": "./bin/index.js"
},
"keywords": [
"README",
"Helm",
"Chart",
"Kubernetes",
"table",
"autogenerate"
],
"license": "Apache-2.0",
"dependencies": {
"commander": "^14.0.3",
"dot-object": "^2.1.5",
"lodash": "^4.17.23",
"markdown-table": "^3.0.0",
"yaml": "^2.8.2"
},
"devDependencies": {
"@babel/preset-env": "^7.29.0",
"@eslint/compat": "^2.0.0",
"@eslint/js": "^9.39.2",
"@eslint/json": "^1.0.1",
"@eslint/markdown": "^7.5.1",
"eslint": "^9.39.2",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.0.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-unicorn": "^63.0.0",
"globals": "^17.3.0",
"jest": "^30.2.0",
"temp": "^0.9.4"
},
"directories": {
"lib": "lib",
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bitnami/readme-generator-for-helm.git"
},
"author": "",
"bugs": {
"url": "https://github.com/bitnami/readme-generator-for-helm/issues"
},
"homepage": "https://github.com/bitnami/readme-generator-for-helm#readme",
"pkg": {
"assets": [
"config.json"
]
}
}