-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.72 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.72 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
{
"name": "wiki-from-folder",
"version": "1.0.0",
"description": "A github action that creates a wiki from one or more folders of markdown files, with the option to generate a custom sidebar from the directory structure of the source files.",
"main": "dist/index.js",
"type": "module",
"scripts": {
"test": "NODE_OPTIONS='--no-warnings --loader ts-node/esm' c8 mocha",
"build": "esbuild src/index.ts --bundle --minify --platform=node --target=node20 --outfile=dist/bundle.cjs",
"coverage": "NODE_OPTIONS='--no-warnings --loader ts-node/esm' c8 -r json-summary mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/quicklysign/wiki-from-folder.git"
},
"keywords": [
"github action",
"wiki",
"markdown",
"documentation",
"automation"
],
"author": "MikhaD",
"bugs": {
"url": "https://github.com/quicklysign/wiki-from-folder/issues"
},
"homepage": "https://github.com/quicklysign/wiki-from-folder#readme",
"devDependencies": {
"@types/chai": "^4.3.13",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.30",
"@types/sinon": "^17.0.3",
"c8": "^9.1.0",
"chai": "^5.1.0",
"esbuild": "^0.20.2",
"mocha": "^10.3.0",
"sinon": "^17.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.3"
},
"mocha": {
"require": [
"ts-node/register"
],
"extension": [
"ts"
],
"spec": [
"tests/**/*.test.ts"
]
},
"c8": {
"reporter": [
"html",
"text"
],
"all": true,
"src": [
"src"
],
"exclude": [
"**/tests/*",
"**/*.d.ts",
"index.ts"
]
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/io": "^1.1.3",
"mdast-util-from-markdown": "^2.0.0",
"mdast-util-to-markdown": "^2.1.0",
"unist-util-visit": "^5.0.0"
}
}