-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.56 KB
/
package.json
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": "mxdocgen",
"version": "1.3.0",
"description": "A small tool that mimics the documentation generation capabilities offered in Mendix Studio Pro, but with greater flexibility.\n\nIt uses the Mendix Model SDK to extract information from a Mendix model, which is then fed into a set of templates to generate the required output, such as an .html document.\nFilters can be applied to control which modules and documents should be processed.\n\nThe tool can be used as a standalone (node-based) CLI or as a library.",
"keywords": [
"Mendix",
"documentation",
"mpk"
],
"author": "Kevin Vlaanderen",
"license": "ISC",
"homepage": "https://github.com/KevinVlaanderen/MxDocGen#readme",
"repository": {
"type": "git",
"url": "https://github.com/KevinVlaanderen/MxDocGen.git"
},
"bugs": {
"url": "https://github.com/KevinVlaanderen/MxDocGen/issues"
},
"main": "dist/index.js",
"bin": "dist/cli/cli.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npm run clean-generated && tsc",
"clean": "npm run clean-generated && npm run clean-output",
"docs": "npm run readme && npm run typedoc",
"prepare": "npm run build",
"start": "npm run build && node dist/cli/cli.js",
"clean-generated": "rimraf dist/",
"clean-output": "rimraf out/",
"readme": "node build/readme.js",
"typedoc": "typedoc && touch docs/.nojekyll",
"barrels": "barrelsby --delete -d src -e __tests__ -l top -s filesystem && npm run prettier",
"prettier": "pretty-quick --verbose --write **/*.*",
"prettier-check": "pretty-quick --verbose --check **/*.*"
},
"prettier": {
"printWidth": 100,
"tabWidth": 4,
"useTabs": true
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"@types/when": "^2.4.33",
"fs-extra": "^8.1.0",
"ignore": "^5.1.4",
"mendixmodelsdk": "^4.29.0",
"mendixplatformsdk": "^4.1.1",
"mustache": "^4.0.0",
"pkg-dir": "^4.2.0",
"uuid": "^3.4.0",
"when": "^3.7.8",
"yargs": "^15.1.0"
},
"devDependencies": {
"@types/fs-extra": "^8.1.0",
"@types/jest": "^25.1.2",
"@types/mustache": "^4.0.0",
"@types/node": "^13.7.1",
"@types/uuid": "^3.4.7",
"@types/yargs": "^15.0.3",
"barrelsby": "^2.2.0",
"husky": "^4.2.3",
"jest": "^25.1.0",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"readme-md-generator": "^1.0.0",
"rimraf": "^3.0.2",
"shelljs": "^0.8.3",
"ts-jest": "^25.2.1",
"ts-node": "^8.6.2",
"typedoc": "^0.16.11",
"typescript": "^3.7.5"
}
}