forked from futurGH/docma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
141 lines (141 loc) · 3.16 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{
"name": "@qiwi/docma",
"version": "3.3.10",
"description": "A powerful dev-tool to easily generate beautiful HTML documentation from Javascript (JSDoc), Markdown and HTML files.",
"license": "MIT",
"author": {
"name": "Onur Yıldırım",
"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",
"docs",
"img",
".prettierrc",
".eslintrc.js",
"favicon.ico",
"docma.json",
"docma-web.js",
"index.js",
"lib",
"LICENSE",
"README.md",
"CHANGELOG.md",
"package.json",
"yarn.lock"
],
"scripts": {
"lint": "yarn eslint ./lib ./test --fix",
"docs": "node bin/docma",
"docs:query": "node bin/docma -c ./test/docma.query.json",
"docs:debug": "node bin/docma --debug",
"prettify": "prettier . --write",
"serve": "static-serve docs --port 9000",
"start": "npm run docs && npm run serve",
"start:query": "npm run docs:query && npm run serve",
"start:debug": "npm run docs:debug && npm run serve",
"test": "jest --verbose --no-cache",
"precommit": "yarn docs && yarn lint && yarn prettify",
"postinstall": "mkdirp lib/web/assets && touch lib/web/assets/docma.less"
},
"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.7.2",
"chalk": "^4.1.0",
"cross-spawn": "^7.0.3",
"docma-template-zebra": "^2.3.1",
"dustjs-linkedin": "^3.0.1",
"easy-table": "^1.2.0",
"fs-extra": "^10.1.0",
"glob": "^8.0.1",
"gzip-size": "^6.0.0",
"inquirer": "^8.2.4",
"jsdoc-x": "^4.1.0",
"jsdom": "^19.0.0",
"less": "^4.1.2",
"less-plugin-clean-css": "^1.5.1",
"lodash": "^4.17.21",
"marked": "^3.0.8",
"mkdirp": "^1.0.4",
"npm-name": "^6.0.1",
"semver": "^7.3.7",
"static-serve": "^0.0.1",
"strip-json-comments": "^3.1.1",
"touch-for-windows": "^1.0.0",
"uglify-js": "^3.15.4",
"yargs": "^17.4.1"
},
"devDependencies": {
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"jest-cli": "^28.1.0",
"prettier": "^2.6.2"
},
"resolutions": {
"clean-css": "^4.1.11",
"braces": "^2.3.1"
},
"bugs": {
"url": "https://github.com/qiwi-forks/docma/issues"
},
"homepage": "https://github.com/qiwi-forks/docma#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/qiwi-forks/docma.git"
}
}