-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
33 lines (33 loc) · 1009 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
{
"name": "svg-to-react-cli",
"version": "1.5.0",
"description": "A command line utility that takes a svg image file and outputs a fully formatted stateless functional React component with `hieght` and `width` for props. With flags to toggle formatting and remove style attributes.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/goopscoop/svg-to-react.git"
},
"keywords": [
"react",
"svg",
"component"
],
"author": "goopscoop <[email protected]> (https://codybarrus.com)",
"license": "ISC",
"bugs": {
"url": "https://github.com/goopscoop/svg-to-react/issues"
},
"homepage": "https://github.com/goopscoop/svg-to-react#readme",
"bin": {
"svgtoreact": "./index.js"
},
"dependencies": {
"chalk": "^1.1.3",
"htmltojsx": "git:https://github.com/reactjs/react-magic.git",
"jsdom-no-contextify": "^3.1.0",
"yargs": "^6.5.0"
}
}