forked from alvinometric/remark-inline-svg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 922 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
39
40
41
42
{
"name": "remark-inline-svg",
"version": "1.1.0",
"description": "Remark plugin that inlines SVG images from markdown and optimises them with SVGO",
"main": "index.js",
"scripts": {
"test": "uvu"
},
"type": "module",
"keywords": [
"remark",
"svg",
"svgo"
],
"files": [
"index.js",
"transform.js"
],
"repository": {
"type": "git",
"url": "https://github.com/alvinometric/remark-inline-svg.git"
},
"homepage": "https://github.com/alvinometric/remark-inline-svg",
"bugs": {
"url": "https://github.com/alvinometric/remark-inline-svg/issues"
},
"author": {
"name": "Alvin Bryan",
"email": "[email protected]",
"url": "https://alvin.codes"
},
"license": "MIT",
"dependencies": {
"svgo": "^3.0.2",
"unist-util-visit": "^4.1.1"
},
"devDependencies": {
"remark": "^14.0.2",
"to-vfile": "^7.2.3",
"uvu": "^0.5.6"
}
}