-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.48 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.48 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
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "action-docs",
"version": "2.5.2",
"description": "Generate GitHub action docs based on action.yml",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"type": "module",
"bin": {
"action-docs": "lib/cli.js"
},
"scripts": {
"prepare": "tsc",
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"test": "vitest --fileParallelism false --testTimeout=10000 --coverage",
"test-default": "vitest run --testTimeout=10000 --exclude=__tests__/cli.test.ts --coverage",
"test-cli": "vitest run --silent --testTimeout=10000 **/cli*test.ts --coverage.enabled=true --coverage.reporter=lcov --coverage.reporter=html --coverage.reportsDirectory=coverage_nyc",
"test-action": "vitest run --testTimeout=10000 --silent **/action-docs-action.test.ts --coverage=false",
"test-workflow": "vitest run --testTimeout=10000 --silent **/action-docs-workflow.test.ts --coverage=false",
"dev-action": "yarn run build && node lib/cli.js -s __tests__/fixtures/action/action.yml",
"dev-workflow": "yarn run build && node lib/cli.js -s __tests__/fixtures/workflow/workflow.yml",
"help": "yarn run build && node lib/cli.js --help",
"all": "yarn run build && yarn run format && yarn run lint && yarn test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/npalm/action-docs.git"
},
"keywords": [
"actions",
"node",
"github",
"cli",
"docs"
],
"author": "Niek Palm",
"license": "MIT",
"dependencies": {
"@types/node": "^24.0.1",
"chalk": "^5.3.0",
"figlet": "^1.7.0",
"replace-in-file": "^8.3.0",
"showdown": "^2.1.0",
"yaml": "^2.3.4",
"yargs": "^18.0.0"
},
"files": [
"lib",
"src",
"tsconfig.json",
"README.md"
],
"devDependencies": {
"@types/figlet": "^1.5.0",
"@types/showdown": "^2.0.6",
"@types/yargs": "^17.0.33",
"@typescript-eslint/parser": "^8.8.1",
"@vitest/coverage-v8": "3.2.3",
"eslint": "^8.56.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-github": "^4.10.0",
"eslint-plugin-prettier": "^5.1.0",
"nyc": "^17.0.0",
"prettier": "^3.2.5",
"typescript": "^5.3.0",
"vitest": "^3.1.4",
"yaml-types": "^0.4.0",
"yarn": "^1.22.0"
},
"bugs": {
"url": "https://github.com/npalm/action-docs/issues"
},
"homepage": "https://github.com/npalm/action-docs#readme",
"directories": {
"dist": "lib"
}
}