-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
55 lines (55 loc) · 1.08 KB
/
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
47
48
49
50
51
52
53
54
55
{
"name": "@11ty/eleventy-plugin-webc",
"version": "0.12.0-beta.3",
"description": "WebC support for Eleventy adds for Single File Web Components",
"main": "eleventyWebcPlugin.js",
"scripts": {
"test": "npx ava --no-worker-threads"
},
"publishConfig": {
"access": "public"
},
"license": "MIT",
"engines": {
"node": ">= 18"
},
"11ty": {
"compatibility": ">=3.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/11ty"
},
"keywords": [
"eleventy",
"eleventy-plugin",
"web-components",
"custom-elements"
],
"author": "Zach Leatherman <[email protected]> (https://zachleat.com/)",
"repository": {
"type": "git",
"url": "git://github.com/11ty/eleventy-plugin-webc.git"
},
"bugs": "https://github.com/11ty/eleventy-plugin-webc/issues",
"ava": {
"failFast": true,
"files": [
"./test/test*.js",
"./test/test*.mjs"
],
"watchMode": {
"ignoreChanges": [
"**/_site/**",
".cache"
]
}
},
"dependencies": {
"@11ty/webc": "^0.11"
},
"devDependencies": {
"@11ty/eleventy": "^3.0.0",
"ava": "^6.2.0"
}
}