-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1018 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 1018 Bytes
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
{
"name": "@projectevergreen/eleventy-plugin-wcc",
"version": "0.4.0",
"description": "An Eleventy plugin for rendering Web Components with WCC.",
"repository": {
"type": "git",
"url": "git+https://github.com/ProjectEvergreen/eleventy-plugin-wcc.git"
},
"author": "Owen Buckley <owen@thegreenhouse.io>",
"type": "module",
"license": "MIT",
"keywords": [
"Eleventy",
"WCC",
"Web Components"
],
"publishConfig": {
"access": "public"
},
"files": [
"src/"
],
"exports": {
".": "./src/index.js"
},
"scripts": {
"clean": "rimraf ./_site",
"lint": "eslint \"src/**/*.js\" \"demo/**/*.js\"",
"test": "node --test",
"build": "npm run clean && eleventy",
"demo": "npm run build -- --serve"
},
"peerDependencies": {
"@11ty/eleventy": "^3.1.0"
},
"dependencies": {
"parse5": "^8.0.0",
"wc-compiler": "~0.20.0"
},
"devDependencies": {
"@11ty/eleventy": "^3.1.0",
"eslint": "^8.18.0",
"rimraf": "^3.0.2"
}
}