lunaisadev-website-old/node_modules/@11ty/eleventy/package.json

131 lines
3.1 KiB
JSON
Executable File

{
"name": "@11ty/eleventy",
"version": "0.12.1",
"description": "Transform a directory of templates into HTML.",
"publishConfig": {
"access": "public"
},
"main": "src/Eleventy.js",
"license": "MIT",
"engines": {
"node": ">=10"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/11ty"
},
"keywords": [
"static-site-generator",
"static-site",
"ssg",
"documentation",
"website",
"jekyll",
"blog",
"templates",
"generator",
"framework",
"eleventy",
"11ty",
"html",
"markdown",
"liquid",
"nunjucks",
"pug",
"handlebars",
"mustache",
"ejs",
"haml"
],
"bin": {
"eleventy": "./cmd.js"
},
"scripts": {
"default": "npm run test",
"doc": "jsdoc -c .jsdoc.conf.json -d ./api-docs -p ./package.json -R README.md -t ./node_modules/ink-docstrap/template -r src/*.js",
"test": "npx ava --verbose",
"lint-staged": "lint-staged",
"coverage": "npx nyc ava && npx nyc report --reporter=json-summary && cp coverage/coverage-summary.json docs-src/_data/coverage.json && node cmd.js --config=docs-src/.eleventy.docs.js",
"prepare": "husky install"
},
"author": {
"name": "Zach Leatherman",
"email": "zachleatherman@gmail.com",
"url": "https://zachleat.com/"
},
"repository": {
"type": "git",
"url": "git://github.com/11ty/eleventy.git"
},
"bugs": "https://github.com/11ty/eleventy/issues",
"homepage": "https://www.11ty.dev/",
"ava": {
"babel": true,
"failFast": false,
"files": [
"./test/*.js"
],
"ignoredByWatcher": [
"./test/stubs/**/*"
]
},
"lint-staged": {
"*.{js,css,md}": [
"prettier --write"
]
},
"devDependencies": {
"@11ty/eleventy-plugin-syntaxhighlight": "^3.1.0",
"@ava/babel": "^1.0.1",
"ava": "^3.15.0",
"husky": "^5.1.3",
"ink-docstrap": "1.3.2",
"js-yaml": "^4.0.0",
"jsdoc": "3.6.6",
"lint-staged": "^10.5.4",
"markdown-it-emoji": "^2.0.0",
"node-sass": "^5.0.0",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"toml": "^3.0.0",
"viperhtml": "^2.17.1",
"vue": "^2.6.12",
"vue-server-renderer": "^2.6.12"
},
"dependencies": {
"@11ty/dependency-tree": "^1.0.0",
"browser-sync": "^2.26.14",
"chalk": "^4.1.0",
"chokidar": "^3.5.1",
"debug": "^4.3.1",
"dependency-graph": "^0.11.0",
"ejs": "^2.7.4",
"fast-glob": "^3.2.5",
"fs-extra": "^8.1.0",
"gray-matter": "^4.0.2",
"hamljs": "^0.6.2",
"handlebars": "^4.7.7",
"javascript-stringify": "^2.0.1",
"liquidjs": "^6.4.3",
"lodash": "^4.17.21",
"luxon": "^1.26.0",
"markdown-it": "^10.0.0",
"minimist": "^1.2.5",
"moo": "^0.5.1",
"multimatch": "^4.0.0",
"mustache": "^2.3.2",
"normalize-path": "^3.0.0",
"nunjucks": "^3.2.3",
"parse-filepath": "^1.0.2",
"please-upgrade-node": "^3.2.0",
"pretty": "^2.0.0",
"pug": "^3.0.2",
"recursive-copy": "^2.0.11",
"semver": "^7.3.4",
"slugify": "^1.4.7",
"time-require": "^0.1.2",
"valid-url": "^1.0.9"
}
}