-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpackage.json
73 lines (73 loc) · 1.57 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
{
"name": "docma",
"version": "1.3.0",
"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": "onur@cutepilot.com"
},
"main": "index.js",
"files": [
"index.js",
"lib",
"bin",
"templates",
"LICENSE"
],
"bin": {
"docma": "bin/docma.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"homepage": "https://github.com/onury/docma#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/onury/docma.git"
},
"bugs": {
"url": "https://github.com/onury/docma/issues"
},
"keywords": [
"doc",
"jsdoc",
"document",
"documentation",
"api",
"source",
"code",
"javascript",
"node",
"dustjs",
"generate",
"build",
"dogma"
],
"dependencies": {
"bluebird": "^3.4.1",
"chalk": "^1.1.3",
"commander": "^2.9.0",
"dustjs-linkedin": "^2.7.3",
"easy-table": "^1.0.0",
"fs-extra": "^1.0.0",
"glob": "^7.0.5",
"jsdoc-x": "^1.1.0",
"jsdom": "^9.4.2",
"less": "^2.7.1",
"less-plugin-clean-css": "^1.5.1",
"lodash": "^4.17.2",
"marked": "^0.3.6",
"strip-json-comments": "^2.0.1",
"uglify-js": "^2.7.0",
"yargs": "^6.4.0"
},
"devDependencies": {
"eslint": "^3.10.2",
"eslint-config-xo": "^0.17.0",
"grunt": "^1.0.1",
"grunt-contrib-watch": "^1.0.0",
"grunt-jasmine-nodejs": "^1.5.3",
"matchdep": "^1.0.1"
}
}