mirror of
https://github.com/svg/svgo.git
synced 2026-01-27 07:02:06 +03:00
119 lines
2.4 KiB
JSON
119 lines
2.4 KiB
JSON
{
|
|
"name": "svgo",
|
|
"version": "2.1.0",
|
|
"description": "Nodejs-based tool for optimizing SVG vector graphics files",
|
|
"keywords": [
|
|
"svgo",
|
|
"svg",
|
|
"optimize",
|
|
"minify"
|
|
],
|
|
"homepage": "https://github.com/svg/svgo",
|
|
"bugs": {
|
|
"url": "https://github.com/svg/svgo/issues"
|
|
},
|
|
"author": {
|
|
"name": "Kir Belevich",
|
|
"email": "kir@belevi.ch",
|
|
"url": "https://github.com/deepsweet"
|
|
},
|
|
"contributors": [
|
|
{
|
|
"name": "Sergey Belov",
|
|
"email": "peimei@ya.ru",
|
|
"url": "https://github.com/arikon"
|
|
},
|
|
{
|
|
"name": "Lev Solntsev",
|
|
"email": "lev.sun@ya.ru",
|
|
"url": "https://github.com/GreLI"
|
|
},
|
|
{
|
|
"name": "Bogdan Chadkin",
|
|
"email": "trysound@yandex.ru",
|
|
"url": "https://github.com/TrySound"
|
|
}
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/svg/svgo.git"
|
|
},
|
|
"main": "./lib/svgo-node.js",
|
|
"bin": {
|
|
"svgo": "./bin/svgo"
|
|
},
|
|
"files": [
|
|
"bin",
|
|
"lib",
|
|
"plugins",
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"test": "c8 --reporter=html --reporter=text mocha \"test/*/_index.js\"",
|
|
"lint": "eslint .",
|
|
"test-browser": "rollup -c && node ./test/browser.js",
|
|
"prepublishOnly": "rm -rf dist && rollup -c"
|
|
},
|
|
"eslintConfig": {
|
|
"ignorePatterns": [
|
|
"dist",
|
|
"fixtures"
|
|
],
|
|
"parserOptions": {
|
|
"ecmaVersion": "2021"
|
|
},
|
|
"env": {
|
|
"node": true,
|
|
"es2021": true
|
|
},
|
|
"extends": [
|
|
"eslint:recommended"
|
|
],
|
|
"overrides": [
|
|
{
|
|
"files": [
|
|
"rollup.config.js"
|
|
],
|
|
"parserOptions": {
|
|
"sourceType": "module"
|
|
}
|
|
},
|
|
{
|
|
"files": [
|
|
"test/**/*.js"
|
|
],
|
|
"env": {
|
|
"mocha": true
|
|
}
|
|
}
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"@trysound/sax": "0.1.1",
|
|
"chalk": "^4.1.0",
|
|
"commander": "^7.1.0",
|
|
"css-select": "^3.1.2",
|
|
"css-select-base-adapter": "^0.1.1",
|
|
"css-tree": "^1.1.2",
|
|
"csso": "^4.2.0",
|
|
"stable": "^0.1.8"
|
|
},
|
|
"devDependencies": {
|
|
"@rollup/plugin-commonjs": "^17.1.0",
|
|
"@rollup/plugin-json": "^4.1.0",
|
|
"@rollup/plugin-node-resolve": "^11.2.0",
|
|
"c8": "^7.6.0",
|
|
"chai": "^4.3.0",
|
|
"del": "^6.0.0",
|
|
"eslint": "^7.20.0",
|
|
"mocha": "^8.3.0",
|
|
"mock-stdin": "^1.0.0",
|
|
"playwright": "^1.8.1",
|
|
"rollup": "^2.39.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=10.13.0"
|
|
},
|
|
"license": "MIT"
|
|
}
|