UNPKG

apidoc-core

Version:

Core parser library to generate apidoc result following the apidoc-spec

67 lines (66 loc) 1.43 kB
{ "name": "apidoc-core", "version": "0.15.0", "description": "Core parser library to generate apidoc result following the apidoc-spec", "author": "Peter Rottmann <rottmann@inveris.de>", "license": "MIT", "main": "./lib/index.js", "homepage": "https://github.com/apidoc/apidoc-core", "repository": { "type": "git", "url": "https://github.com/apidoc/apidoc-core.git" }, "bugs": { "url": "https://github.com/apidoc/apidoc-core/issues" }, "scripts": { "test": "npm run jshint && mocha test/**/*_test.js", "jshint": "jshint lib/ test/" }, "keywords": [ "api", "apidoc", "doc", "documentation", "rest", "restful" ], "engines": { "node": ">= 0.10.0" }, "dependencies": { "fs-extra": "^9.0.1", "glob": "^7.1.6", "iconv-lite": "^0.6.2", "klaw-sync": "^6.0.0", "lodash": "^4.17.20", "semver": "~7.3.2" }, "devDependencies": { "apidoc-example": "^0.2.3", "deep-equal": "^2.0.3", "jshint": "^2.12.0", "markdown-it": "^11.0.0", "mocha": "^8.1.1", "should": "~13.2.3" }, "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" ] } }