Files
svgr/packages/cli/package.json
2021-09-12 12:10:33 +02:00

48 lines
1.1 KiB
JSON

{
"name": "@svgr/cli",
"description": "SVGR command line.",
"version": "5.5.0",
"repository": "https://github.com/gregberge/svgr/tree/master/packages/cli",
"author": "Greg Bergé <berge.greg@gmail.com>",
"publishConfig": {
"access": "public"
},
"keywords": [
"svgr",
"svg",
"react",
"cli"
],
"engines": {
"node": ">=10"
},
"homepage": "https://react-svgr.com",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/gregberge"
},
"license": "MIT",
"bin": {
"svgr": "./bin/svgr"
},
"scripts": {
"prebuild": "rm -rf lib/",
"build": "babel --config-file ../../babel.config.js -d lib --ignore \"**/*.test.js\" src",
"prepublishOnly": "yarn run build"
},
"dependencies": {
"@svgr/core": "^5.5.0",
"@svgr/plugin-jsx": "^5.5.0",
"@svgr/plugin-prettier": "^5.5.0",
"@svgr/plugin-svgo": "^5.5.0",
"camelcase": "^6.2.0",
"chalk": "^4.1.2",
"commander": "^8.2.0",
"dashify": "^2.0.0",
"glob": "^7.1.7"
},
"devDependencies": {
"del": "^6.0.0"
}
}