-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
53 lines (53 loc) · 1019 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
47
48
49
50
51
52
53
{
"name": "@11ty/eleventy-plugin-webc",
"version": "0.11.2",
"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": ">=14.18"
},
"11ty": {
"compatibility": ">=2.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/11ty"
},
"keywords": [
"eleventy",
"eleventy-plugin",
"web-components",
"custom-elements"
],
"author": {
"name": "Zach Leatherman",
"email": "zachleatherman@gmail.com",
"url": "https://zachleat.com/"
},
"ava": {
"failFast": true,
"files": [
"./test/test*.js"
],
"ignoredByWatcher": [
"**/_site/**",
".cache"
]
},
"dependencies": {
"@11ty/eleventy-plugin-bundle": "^1.0.4",
"@11ty/webc": "^0.11.0"
},
"devDependencies": {
"@11ty/eleventy": "^2.0.0",
"ava": "^5.2.0",
"node-retrieve-globals": "^2.0.8"
}
}