UNPKG

apidoc

Version:

RESTful web API Documentation Generator

79 lines (78 loc) 1.84 kB
{ "name": "apidoc", "version": "0.27.0", "description": "RESTful web API Documentation Generator", "author": "Peter Rottmann <rottmann@inveris.de>", "license": "MIT", "preferGlobal": true, "bin": "bin/apidoc", "main": "./lib/index.js", "homepage": "https://apidocjs.com", "repository": { "type": "git", "url": "https://github.com/apidoc/apidoc.git" }, "bugs": { "url": "https://github.com/apidoc/apidoc/issues" }, "scripts": { "test": "npm run jshint && mocha test/", "jshint": "jshint lib/ test/", "build-example": "bin/apidoc -v -i example/ -o tmp/", "update-lodash": "./node_modules/lodash-cli/bin/lodash -p -o template/vendor/lodash.custom.min.js include=get,set,groupBy,each,extend,some,isNaN exports=amd" }, "keywords": [ "api", "apidoc", "doc", "documentation", "rest", "restful" ], "engines": { "node": ">= 0.10.0" }, "dependencies": { "apidoc-core": "^0.12.0", "commander": "^2.20.0", "fs-extra": "^9.0.1", "handlebars": "^4.7.6", "lodash": "^4.17.20", "markdown-it": "^11.0.0", "nodemon": "^2.0.4", "winston": "^3.3.3" }, "devDependencies": { "amdefine": "^1.0.1", "apidoc-example": "^0.2.3", "bootstrap": "3.4.1", "jquery": "3.5.1", "jshint": "^2.12.0", "lodash-cli": "^4.17.5", "mocha": "^8.1.1", "path-to-regexp": "^3.2.0", "requirejs": "^2.3.6", "semver": "^7.3.2", "should": "~13.2.3", "webfontloader": "^1.6.28" }, "jshintConfig": { "camelcase": true, "curly": false, "eqeqeq": true, "forin": true, "latedef": false, "newcap": true, "undef": true, "unused": true, "trailing": true, "node": true, "browser": true, "predef": [ "it", "describe", "before", "after" ] } }