-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 963 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 963 Bytes
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
{
"name": "svgo-add-viewbox",
"version": "3.1.0",
"description": "SVGO plugin which adds 'viewBox' attribute based on 'width' and 'height' attributes",
"keywords": [
"viewBox",
"SVGO plugin",
"SVG optimizer",
"SVG optimization"
],
"homepage": "https://atanas.info/portfolio/open-source/svgo-add-viewbox",
"bugs": {
"url": "https://github.com/scriptex/svgo-add-viewbox/issues",
"email": "hi@atanas.info"
},
"license": "MIT",
"author": "Atanas Atanasov <hi@atanas.info> (https://atanas.info)",
"funding": "https://github.com/sponsors/scriptex",
"main": "index.mjs",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/scriptex/svgo-add-viewbox.git"
},
"scripts": {
"svg": "svgo -f ./test/input -o ./test/output --config ./test/svgo.config.mjs",
"test": "yarn svg && tape test/index.mjs"
},
"dependencies": {},
"devDependencies": {
"svg-parser": "2.0.4",
"svgo": "4.0.1",
"tape": "5.9.0"
}
}