metalsmith-index/package.json
David Soulayrol 8151ed90cf Added recursiveness capabilities. Closes #1.
Indexing now relies on recursive-readdir, which is also the library
used by Metalsmith.
2018-02-11 11:53:55 +01:00

29 lines
709 B
JSON

{
"name": "metalsmith-index",
"version": "1.1.0",
"description": "A Metalsmith plugin to create directory indexes",
"readmeFilename": "README.md",
"homepage": "https://github.com/dsoulayrol/metalsmith-index",
"author": {
"name": "David Soulayrol",
"email": "david.soulayrol@gmail.com"
},
"license": "GPL-3.0+",
"repository": {
"type": "git",
"url": "git://github.com/dsoulayrol/metalsmith-index.git"
},
"main": "lib/index.js",
"scripts": {
"test": "node_modules/.bin/mocha --reporter spec --slow 300"
},
"devDependencies": {
"eol": "^0.9.1",
"metalsmith": "^2.3.0",
"mocha": "^4.0.1"
},
"dependencies": {
"recursive-readdir": "^2.2.1"
}
}