@antora/atlas-extension
Version:
An Antora extension that manages references across discrete runs of Antora through the use of a site manifest.
99 lines (98 loc) • 2.79 kB
JSON
{
"name": "@antora/atlas-extension",
"version": "1.0.0-alpha.5",
"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": {
"type": "git",
"url": "git+https://gitlab.com/antora/antora-atlas-extension.git"
},
"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",
"./package.json": "./package.json",
"./schema": "./lib/schema.json"
},
"imports": {
"#package": "./package.json",
"#proxy-content-catalog": "./lib/proxy-content-catalog.js"
},
"scripts": {
"build": "npm test",
"postbuild": "npm run lint",
"coverage": "npx -y c8 node -r ./test/harness/coverage-config.js --test test/*-test.js",
"coverage-ci": "npx -y nyc node -r ./test/harness/coverage-config.js --test-reporter dot --test-reporter-destination stdout --test-reporter junit --test-reporter-destination reports/tests-xunit.xml --test test/*-test.js",
"format": "npx -y --include optional @biomejs/biome@~1 format --write",
"postformat": "node --disable-warning ExperimentalWarning npm/postformat.js",
"lint": "npx -y --include optional @biomejs/biome@~1 lint",
"postpublish": "npx -y --tag latest downdoc --postpublish",
"prepublishOnly": "npx -y --tag latest downdoc --prepublish",
"test": "node --test test/*-test.js",
"pretidy": "npm run lint",
"tidy": "npm run format"
},
"dependencies": {
"@antora/expand-path-helper": "~3.0",
"cache-directory": "~2.0",
"node-gzip": "~1.1",
"simple-get": "~4.0"
},
"devDependencies": {
"@antora/content-classifier": "3.2.0-alpha.2",
"ajv": "~8.17",
"ajv-formats": "~3.0"
},
"engines": {
"node": ">=16.0.0"
},
"files": [
"lib/"
],
"keywords": [
"antora",
"antora-extension",
"asciidoc",
"asciidoctor",
"command",
"manifest",
"sharding",
"publication",
"documentation"
],
"c8": {
"all": true,
"include": [
"lib/**/*.js"
],
"exclude": [],
"reporter": [
"lcov",
"text"
],
"reportDir": "reports"
},
"nyc": {
"cache": true,
"cacheDir": ".cache/nyc/c",
"include": [
"lib/**/*.js"
],
"exclude": [],
"reporter": [
"json"
],
"reportDir": "reports",
"tempDir": ".cache/nyc/i"
}
}