This repository was archived by the owner on Aug 14, 2026. It is now read-only.
forked from rigwild/apidoc-markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) 路 1.73 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) 路 1.73 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
{
"name": "apidoc-markdown",
"version": "7.3.3",
"description": "馃摑 Generate a Simple and Portable Markdown documentation for your API",
"license": "MIT",
"repository": "techdyn/apidoc-markdown",
"author": {
"name": "Brandon Stonebridge",
"email": "brandon@techster.co.uk",
"url": "https://techster.co.uk"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"apidoc-markdown": "./bin/index.js"
},
"files": [
"bin",
"dist",
"templates",
"pnpm-lock.yaml"
],
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"build": "tsc",
"help": "node bin/index.js -h",
"example:generate": "cd example && node generateExamples.js",
"example:clean": "rm -rf example/basic/example.md example/multi/*",
"test": "tsc && ava",
"test:ava": "ava",
"test:gen-apidoc": "cd test/_apidoc && rm -rf out && apidoc -i src -o out",
"prepublishOnly": "tsc",
"prepare": "npm run build"
},
"dependencies": {
"apidoc-light": "https://github.com/techdyn/apidoc-light.git",
"ejs": "^3.1.9",
"semver": "^7.5.4",
"update-notifier": "^7.0.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/ejs": "^3.1.5",
"@types/node": "^20.10.5",
"@types/semver": "^7.5.6",
"@types/yargs": "17.0.32",
"ava": "^6.0.1",
"fs-extra": "^11.2.0",
"typescript": "^5.3.3"
},
"keywords": [
"apidoc",
"markdown",
"portable",
"api",
"doc",
"documentation",
"generator",
"programmatic",
"cli",
"cli-app",
"command-line",
"rest",
"restful",
"api-documentation",
"markdown-documentation"
],
"ava": {
"files": [
"test/**/*",
"!test/_testFiles"
],
"verbose": true
}
}