UNPKG

@antora/atlas-extension

Version:

An Antora extension that manages references across discrete runs of Antora through the use of a site manifest.

88 lines (87 loc) 2.25 kB
{ "name": "@antora/atlas-extension", "version": "1.0.0-alpha.2", "description": "An Antora extension that manages references across discrete runs of Antora through the use of a site manifest.", "license": "MPL-2.0", "author": "OpenDevise Inc. (https://opendevise.com)", "contributors": [ "Dan Allen <dan@opendevise.com>", "Sarah White <sarah@opendevise.com>" ], "homepage": "https://antora.org", "repository": "gitlab:antora/antora-atlas-extension", "bugs": { "url": "https://gitlab.com/antora/antora-atlas-extension/issues" }, "main": "lib/index.js", "exports": { ".": "./lib/index.js", "./export-site-manifest": "./lib/export-site-manifest.js", "./import-site-manifest": "./lib/import-site-manifest.js", "./schema": "./lib/schema.json" }, "imports": { "#package": "./package.json", "#proxy-content-catalog": "./lib/proxy-content-catalog.js" }, "files": [ "lib" ], "scripts": { "build": "npm test && npm run lint", "coverage": "nyc _mocha", "format": "node npm/format.js lib,test,npm", "lint": "eslint \"npm/**/*.js\" \"{lib,test}/**/*.js\"", "postpublish": "npx -y downdoc --postpublish", "prepublishOnly": "npx -y downdoc --prepublish", "test": "_mocha", "version": "node npm/version.js" }, "dependencies": { "@antora/expand-path-helper": "~2.0", "cache-directory": "~2.0", "node-gzip": "~1.1", "simple-get": "~4.0" }, "devDependencies": { "@antora/content-classifier": "3.2.0-alpha.2", "ajv": "~8.12", "ajv-formats": "~2.1", "chai": "~4.3", "chai-fs": "~2.0", "chai-spies": "~1.0", "dirty-chai": "~2.0", "eslint": "~8.43", "eslint-config-standard": "~17.1", "mocha": "~10.2", "nyc": "~15.1", "prettier-eslint": "~15.0" }, "engines": { "node": ">=16.0.0" }, "keywords": [ "antora", "antora-extension", "asciidoc", "asciidoctor", "command", "manifest", "sharding", "publication", "documentation" ], "nyc": { "cache": true, "cacheDir": "node_modules/.cache/nyc", "include": [ "lib/**/*.js" ], "reporter": [ "cobertura", "lcov", "text" ], "reportDir": "reports" } }