-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1002 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "@11ty/eleventy-plugin-pug",
"version": "0.0.2",
"description": "Pug templates for Eleventy 3!",
"private": true,
"keywords": [
"eleventy",
"eleventy-plugin",
"plugin",
"pug",
"html",
"template",
"ssg",
"static-site-generator"
],
"exports": "./index.js",
"type": "module",
"directories": {
"test": "test"
},
"scripts": {
"test": "node --test",
"test:cov": "node --test --experimental-test-coverage",
"test-watch": "node --test --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Zearin/eleventy-plugin-pug.git"
},
"author": "Zearin",
"license": "MIT",
"bugs": {
"url": "https://github.com/Zearin/eleventy-plugin-pug/issues"
},
"homepage": "https://github.com/Zearin/eleventy-plugin-pug#readme",
"engines": {
"node": ">=18"
},
"peerDependencies": {
"@11ty/eleventy": "^3.0.0-alpha.14"
},
"dependencies": {
"debug": "^4.3.4",
"pug": "^3.0.2"
}
}