create-svg-sprite
Version:
Create SVG sprite with no build configuration based on SVG files from given folder
38 lines (37 loc) • 1.05 kB
JSON
{
"name": "create-svg-sprite",
"version": "1.1.0",
"description": "Create SVG sprite with no build configuration based on SVG files from given folder",
"main": "bin/cli.js",
"bin": "bin/cli.js",
"scripts": {
"sprite": "node bin/cli --optimize --input ./icons --output ./sprite",
"sprite:raw": "node bin/cli --input ./icons --output ./sprite",
"sprite:quiet": "node bin/cli --optimize --quiet --input ./icons --output ./sprite",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/achwilko/create-svg-sprite.git"
},
"keywords": [
"SVG",
"sprite",
"CLI"
],
"author": "Adam Chwilkowski",
"license": "MIT",
"bugs": {
"url": "https://github.com/achwilko/create-svg-sprite/issues"
},
"homepage": "https://github.com/achwilko/create-svg-sprite#readme",
"dependencies": {
"ora": "^3.4.0",
"shelljs": "^0.8.3",
"yargs": "^13.3.0"
},
"engines": {
"node": ">= 10.16.0",
"npm": ">= 6.9.0"
}
}