forked from chrisbull/svg-to-react-native-cli
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 1.1 KB
/
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
34
35
{
"name": "svg-to-react-native-cli",
"version": "0.0.3",
"description": "Based on svg-to-react-cli. A command line utility that takes a svg image file and outputs a fully formatted stateless functional React Native component with `height` and `width` for props. With flags to toggle formatting and remove style attributes.",
"main": "index.js",
"dependencies": {
"chalk": "^1.1.3",
"htmltojsx": "^0.3.0",
"jsdom-no-contextify": "^3.1.0",
"svg-to-jsx": "^0.0.21",
"yargs": "^6.5.0"
},
"scripts": {
"test": "node index.js ./src/test-svgs/test TestSvg --output ./src/test-svgs/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chrisbull/svg-to-react-native-cli.git"
},
"keywords": [
"react",
"react-native",
"svg",
"component"
],
"author": "Chris Bull <[email protected]> (http://siteappy.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/chrisbull/svg-to-react-native-cli/issues"
},
"homepage": "https://github.com/chrisbull/svg-to-react-native-cli#readme",
"bin": {
"svg-to-react-native": "./index.js"
}
}