forked from onury/docma
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
126 lines (126 loc) · 2.78 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "@pietal.dev/docma",
"version": "3.3.15",
"description": "A powerful dev-tool to easily generate beautiful HTML documentation from Javascript (JSDoc), Markdown and HTML files.",
"repository": "Prozi/docma",
"license": "MIT",
"author": {
"name": "Onur Yildirim",
"email": "[email protected]"
},
"maintainers": [
{
"name": "Jacek Pietal",
"url": "https://github.com/Prozi"
}
],
"private": false,
"main": "index.js",
"bin": {
"docma": "bin/docma.js"
},
"engines": {
"node": "*"
},
"files": [
"bin",
"src",
"templates",
"index.js",
"yarn.lock"
],
"scripts": {
"lint": "yarn eslint src test --fix",
"build": "node bin/docma",
"docs:query": "yarn build -c test/docma.query.json",
"docs:debug": "yarn build --debug",
"prettify": "prettier . --write",
"start": "chef-express docs",
"dev": "yarn build && yarn start",
"start:query": "npm run docs:query && npm run serve",
"start:debug": "npm run docs:debug && npm run serve",
"test": "jest --roots . --verbose --no-cache",
"precommit": "yarn build && yarn lint && yarn prettify",
"downgrade": "yarn add chalk@^4 strip-json-comments@^3 gzip-size@^6 inquirer@^8 eslint@^8 marked@^7 glob@^9 -D"
},
"jest": {
"testEnvironment": "node",
"roots": [
"<rootDir>/lib",
"<rootDir>/test"
],
"testMatch": [
"**/test/(*.)?(spec|test).js"
],
"moduleFileExtensions": [
"js",
"json"
],
"testPathIgnorePatterns": [
"/backup/",
"/bin/",
"/design/",
"/doc/",
"/templates/"
]
},
"keywords": [
"doc",
"docs",
"jsdoc",
"document",
"documentation",
"api",
"source",
"code",
"javascript",
"markdown",
"html",
"node",
"dustjs",
"generate",
"build",
"comments",
"template",
"dogma"
],
"dependencies": {
"bluebird": "^3",
"chalk": "^4",
"dustjs-helpers": "^1.7.4",
"dustjs-linkedin": "^3.0.1",
"easy-table": "^1",
"fs-extra": "^11",
"glob": "^9",
"gzip-size": "^6",
"inquirer": "^8",
"jquery": "^3",
"jsdoc-x": "^4",
"jsdom": "^24",
"less": "^4",
"less-plugin-clean-css": "^1",
"lodash": "^4",
"marked": "^7",
"npm-name": "^8",
"semver": "^7",
"strip-json-comments": "^3",
"uglify-js": "^3",
"wolfy87-eventemitter": "^5.2.9",
"yargs": "^17"
},
"devDependencies": {
"chef-express": "^2.1.4",
"eslint": "^8",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest-cli": "^29.7.0",
"prettier": "^3.2.5"
},
"resolutions": {
"clean-css": ">=4.1.11",
"jsdoc": ">=4.0.3",
"minimatch": ">=3.0.5",
"minimist": ">=1.2.6",
"semver": ">=6.3.1"
}
}