-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
59 lines (59 loc) · 1.4 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
56
57
58
59
{
"name": "eleventy-plugin-add-web-component-definitions",
"version": "2.2.0",
"description": "",
"main": "index.js",
"keywords": [
"eleventy",
"11ty",
"plugin",
"webcomponents",
"wc",
"web-components",
"eleventy-plugin"
],
"author": "",
"contributors": [
"Benny Powers <[email protected]>",
"Daniel Vivar (https://github.com/jdvivar)",
"Doug Baldwin <[email protected]>"
],
"license": "MIT",
"dependencies": {
"hast-util-from-parse5": "^6.0.1",
"hast-util-to-html": "^7.1.2",
"hastscript": "^6.0.0",
"parse5": "^5.1.1",
"unist-util-visit": "^2.0.3"
},
"devDependencies": {
"@11ty/eleventy": "^0.12.1",
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"ava": "^4.0.0",
"husky": "^7.0.4",
"servor": "^4.0.2",
"standard": "^16.0.4",
"standard-version": "^9.3.2"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"scripts": {
"release": "standard-version",
"pretest": "npm run lint",
"test": "npx ava",
"demo": "npx @11ty/eleventy --config=demo/.eleventy.js && npx servor demo/_site",
"lint": "standard",
"lint-fix": "standard --fix",
"prepare": "husky install"
},
"repository": "github:jdvivar/eleventy-plugin-add-web-component-definitions",
"ava": {
"files": [
"./test/**/*.test.js"
]
}
}