-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 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
60
61
62
63
64
65
66
67
68
{
"name": "eleventy-plugin-code-style-hooks",
"version": "2.0.2",
"description": "11ty plugin for automatic syntax highlighting without shortcodes or client side JavaScript.",
"keywords": [
"11ty",
"eleventy",
"eleventy-plugin",
"syntax",
"highlight",
"highlighting",
"prism",
"prismjs",
"posthtml"
],
"homepage": "https://github.com/JKC-Codes/eleventy-plugin-code-style-hooks#readme",
"bugs": {
"url": "https://github.com/JKC-Codes/eleventy-plugin-code-style-hooks/issues"
},
"license": "MPL-2.0",
"author": {
"name": "John Kemp-Cruz",
"url": "https://jkc.codes/"
},
"files": [
"index.js",
"components/**"
],
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/JKC-Codes/eleventy-plugin-code-style-hooks.git"
},
"scripts": {
"eleventy": "npx @11ty/eleventy --dryrun --quiet",
"ava": "ava",
"test": "concurrently npm:ava npm:eleventy",
"prepublishOnly": "npm run test"
},
"dependencies": {
"posthtml-parser": "^0.11.0",
"posthtml-render": "^3.0.0",
"prismjs": "^1.0.0"
},
"devDependencies": {
"@11ty/eleventy": "^2.0.0",
"ava": "^6.0.0",
"concurrently": "^8.0.0",
"posthtml": "^0.16.0"
},
"peerDependencies": {
"@11ty/eleventy": "*"
},
"peerDependenciesMeta": {
"@11ty/eleventy": {
"optional": true
}
},
"engines": {
"node": ">=12.0.0"
},
"ava": {
"files": [
"!./tests/test-site/**"
],
"failFast": true
}
}