forked from 11ty/eleventy-plugin-syntaxhighlight
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.3 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
{
"name": "@11ty/eleventy-plugin-syntaxhighlight",
"version": "3.1.2",
"description": "A pack of Eleventy plugins for syntax highlighting for Markdown and Liquid templates.",
"publishConfig": {
"access": "public"
},
"main": ".eleventy.js",
"scripts": {
"test": "npx ava",
"demo": "npx @11ty/eleventy --input=demo --output=demo/_site --config=demo/eleventy-config.js",
"start": "npx @11ty/eleventy --input=demo --output=demo/_site --config=demo/eleventy-config.js --serve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/11ty/eleventy-plugin-syntaxhighlight.git"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/11ty"
},
"keywords": [
"eleventy",
"eleventy-plugin"
],
"author": {
"name": "Zach Leatherman",
"email": "[email protected]",
"url": "https://zachleat.com/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/11ty/eleventy-plugin-syntaxhighlight/issues"
},
"homepage": "https://www.11ty.dev/docs/plugins/syntaxhighlight/",
"peerDependencies": {
"@11ty/eleventy": ">=0.5.4"
},
"devDependencies": {
"ava": "^3.15.0",
"liquidjs": "^9.25.1",
"markdown-it": "^12.1.0"
},
"dependencies": {
"linkedom": "^0.11.0",
"prismjs": "^1.24.1"
}
}