-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.42 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.42 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
{
"name": "@dhis2/cli-utils-docsite",
"description": "Generate and serve standardized DHIS2 developer documentation",
"version": "3.2.0",
"bin": {
"d2-utils-docsite": "./bin/d2-utils-docsite"
},
"main": "src/index.js",
"author": "Austin McGee <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/dhis2/cli-utils-docsite.git"
},
"license": "BSD-3-Clause",
"private": false,
"engines": {
"node": ">=12"
},
"dependencies": {
"@dhis2/cli-helpers-engine": "^3.0.0",
"@dhis2/cli-helpers-template": "^3.0.0",
"ast-types": "^0.14.2",
"chokidar": "^3.3.1",
"front-matter": "^3.1.0",
"fs-extra": "^8.1.0",
"glob": "^7.1.7",
"hyperscript-html": "^2.0.0",
"jsdoc-to-markdown": "^5.0.3",
"live-server": "^1.2.1",
"marked": "^2.1.3",
"match-all": "^1.2.5",
"react-docgen": "^6.0.0-alpha.0",
"url-join": "^4.0.1"
},
"scripts": {
"build": "./bin/d2-utils-docsite build ./docs -o dist --jsdoc src/ --jsdocOutputFile api.md",
"serve": "./bin/d2-utils-docsite serve ./docs -o dist --jsdoc src/ --jsdocOutputFile api.md",
"lint": "d2-style check",
"format": "d2-style apply"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@dhis2/cli-style": "^10.4.1"
}
}