UNPKG

docma

Version:

A powerful dev-tool to easily generate beautiful HTML documentation from Javascript (JSDoc), Markdown and HTML files.

106 lines (105 loc) 2.38 kB
{ "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": "onur@cutepilot.com" }, "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" } }