-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
38 lines (38 loc) · 1016 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
{
"name": "eleventy-plugin-svg-contents",
"version": "0.7.0",
"description": "A plugin for 11ty to take an SVG and provide the contents of that file to a template",
"main": ".eleventy.js",
"keywords": [
"eleventy",
"eleventy-plugin"
],
"scripts": {
"test": "mocha",
"lint:js": "npx eslint \"./src/**/*.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/brob/eleventy-plugin-svg-contents.git"
},
"bugs": {
"url": "https://github.com/brob/eleventy-plugin-svg-contents/issues"
},
"homepage": "https://github.com/brob/eleventy-plugin-svg-contents",
"author": {
"name": "Bryan Robinson",
"email": "[email protected]",
"url": "https://bryanlrobinson.com"
},
"license": "MIT",
"devDependencies": {
"@11ty/eleventy": "^0.10.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"mocha": "^7.1.2"
},
"dependencies": {
"cheerio": "^1.0.0-rc.3"
}
}