forked from onury/docma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 2.33 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
{
"name": "docma",
"version": "3.2.2",
"description": "A powerful dev-tool to easily generate beautiful HTML documentation from Javascript (JSDoc), Markdown and HTML files.",
"repository": "onury/docma",
"license": "MIT",
"author": {
"name": "Onur Yıldırım",
"email": "[email protected]"
},
"main": "index.js",
"files": [
"index.js",
"lib",
"bin",
"LICENSE"
],
"bin": {
"docma": "bin/docma.js"
},
"engines": {
"node": ">=8"
},
"scripts": {
"docs": "node bin/docma",
"docs:query": "node bin/docma -c ./test/docma.query.json",
"docs:debug": "node bin/docma --debug",
"zebra": "cd ./templates/zebra && npm run build",
"serve": "node bin/docma serve -p 9000",
"start": "npm run zebra && npm run docs && npm run serve",
"start:query": "npm run zebra && npm run docs:query && npm run serve",
"start:debug": "npm run zebra && npm run docs:debug && npm run serve",
"test": "jest --verbose --no-cache"
},
"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.5.3",
"chalk": "^2.4.2",
"docma-template-zebra": "^2.3.1",
"dustjs-linkedin": "^2.7.5",
"easy-table": "^1.1.1",
"express": "^4.16.4",
"fs-extra": "^7.0.1",
"glob": "^7.1.3",
"gzip-size": "^5.0.0",
"inquirer": "^6.2.1",
"jsdoc-x": "^4.0.3",
"jsdom": "^13.1.0",
"less": "^3.9.0",
"less-plugin-clean-css": "^1.5.1",
"lodash": "^4.17.11",
"marked": "^0.6.0",
"npm-name": "^5.0.1",
"semver": "^5.6.0",
"serve-static": "^1.13.2",
"strip-json-comments": "^2.0.1",
"uglify-js": "^3.4.9",
"yargs": "^12.0.5"
},
"devDependencies": {
"eslint": "^5.12.0",
"eslint-config-xo": "^0.25.1",
"jest-cli": "^23.6.0"
}
}