UNPKG

@metalsmith/table-of-contents

Version:

A metalsmith plugin to generate table of contents.

73 lines (72 loc) 1.88 kB
{ "name": "@metalsmith/table-of-contents", "version": "1.0.0", "description": "A metalsmith plugin to generate table of contents.", "keywords": [ "table-of-contents", "toc-generator", "metalsmith-plugin", "metalsmith" ], "repository": { "type": "git", "url": "https://github.com:metalsmith/table-of-contents.git" }, "homepage": "https://github.com/metalsmith/table-of-contents", "bugs": { "url": "https://github.com/metalsmith/table-of-contents/issues" }, "main": "lib/index.js", "scripts": { "test": "nyc mocha", "coverage": "nyc report --reporter=text-lcov > ./coverage.info", "coveralls": "npm run coverage && cat ./coverage.info | coveralls", "format": "prettier --write \"**/*.{yml,md,js,json}\"", "lint": "eslint --cache --fix-dry-run .", "release": "release-it ." }, "author": "Mitsunori KUBOTA <anatoo.jp@gmail.com> (http://anatoo.jp)", "maintainers": [ "Kevin Van Lierde <kevin.van.lierde@gmail.com> (https://webketje.com)" ], "license": "MIT", "dependencies": { "async": "^0.9.0", "cheerio": "^1.0.0-rc.10", "debug": "^4.1.1", "entities": "^1.1.1", "extend": "^3.0.2", "lodash": ">=4.17.13", "metalsmith": "^2.3.0", "slugify": "^1.6.4" }, "devDependencies": { "@metalsmith/layouts": "^2.4.0", "assert-dir-equal": "^1.0.1", "coveralls": "^3.1.1", "eslint": "^8.5.0", "eslint-config-prettier": "^8.3.0", "jstransformer-handlebars": "^1.1.0", "mocha": "^7.2.0", "nyc": "^15.1.0", "prettier": "^2.5.1", "release-it": "^14.11.8" }, "peerDependencies": { "metalsmith": "^2.3.0" }, "publishConfig": { "access": "public" }, "files": [ "lib/index.js", "lib/TocItem.js" ], "directories": { "lib": "lib", "test": "test" }, "engines": { "node": ">=8.17.0" } }