123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- {
- "name": "apidoc",
- "version": "1.2.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": {
- "build-example": "./bin/apidoc -v -i example/ -o /tmp/apidoc-output",
- "build-devxample": "./bin/apidoc -v -i example/ -o /tmp/apidoc-output --debug",
- "eslint": "./node_modules/.bin/eslint --ext js,mjs lib bin/apidoc template/src",
- "pre-commit": "npm run eslint && npm run test",
- "serve": "npm run build-example && docker run --rm --name apidoc -p 8080:80 -v /tmp/apidoc-output:/usr/share/nginx/html:ro -d nginx",
- "test": "mocha --colors --no-package --no-config 'test/**/*_test.*js'"
- },
- "keywords": [
- "api",
- "apidoc",
- "doc",
- "documentation",
- "rest",
- "restful"
- ],
- "engines": {
- "node": ">=16.0.0"
- },
- "os": [
- "darwin",
- "freebsd",
- "linux",
- "openbsd",
- "win32"
- ],
- "dependencies": {
- "bootstrap": "3.4.1",
- "commander": "^10.0.0",
- "diff-match-patch": "^1.0.5",
- "esbuild-loader": "^2.16.0",
- "expose-loader": "^4.0.0",
- "fs-extra": "^11.0.0",
- "glob": "^7.2.0",
- "handlebars": "^4.7.7",
- "iconv-lite": "^0.6.3",
- "jquery": "^3.6.0",
- "klaw-sync": "^6.0.0",
- "lodash": "^4.17.21",
- "markdown-it": "^12.2.0",
- "nodemon": "^3.0.1",
- "prismjs": "^1.25.0",
- "semver": "^7.5.0",
- "style-loader": "^3.3.1",
- "webpack": "^5.64.2",
- "webpack-cli": "^4.9.1",
- "winston": "^3.3.3"
- },
- "devDependencies": {
- "@types/lodash": "^4.14.177",
- "@types/mocha": "^10.0.0",
- "@types/node": "^16.11.9",
- "eslint": "^8.38.0",
- "eslint-config-recommended": "^4.1.0",
- "eslint-config-standard": "^17.0.0",
- "eslint-plugin-import": "^2.25.3",
- "eslint-plugin-node": "^11.1.0",
- "eslint-plugin-promise": "^6.1.1",
- "mocha": "^9.1.3"
- }
- }
|