Skip to content

Commit d64e67a

Browse files
committed
Add Bower file and update docs
1 parent 75b0607 commit d64e67a

File tree

2 files changed

+31
-4
lines changed

2 files changed

+31
-4
lines changed

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ Font-Awesome-SVG-PNG
33

44
This project provides a Font-Awesome build split to individual SVG and PNG files of different sizes along with Node.JS based generator to generate any other colors and sizes combinations.
55

6-
##What is Font-Awesome?
6+
## What is Font-Awesome?
77
Font Awesome is a full suite of 439 pictographic icons for easy scalable vector graphics on websites, created and
88
maintained by [Dave Gandy](http://twitter.com/davegandy). Stay up to date [@fontawesome](http://twitter.com/fontawesome).
99

1010
Get started at http://fontawesome.io!
1111

12-
##License
12+
## License
1313
- The Font Awesome font is licensed under the SIL OFL 1.1:
1414
- http://scripts.sil.org/OFL
1515
- Font-Awesome-SVG-PNG is licensed under the MIT license
@@ -19,15 +19,17 @@ You may use already generated icons in `white` and `black` directories. You can
1919

2020
Note: you need to have a command `rsvg-convert` available.
2121

22-
Install by `npm install -g font-awesome-svg-png`:
22+
Install via npm: `npm install -g font-awesome-svg-png`.
23+
24+
Install via Bower: `bower install font-awesome-svg-png`.
2325

2426
The following command will generate a red set of icons at sizes of 128 and 256 pixels in directory `red`:
2527
`font-awesome-svg-png --color red --sizes 128,256`
2628

2729
## Windows support
2830
Everything should work once you have `rsvg-convert.exe`. You may get it from https://osspack32.googlecode.com/files/rsvg-convert.exe and move to `%PATH%`.
2931

30-
## MacOSX support
32+
## Mac OS X support
3133
```
3234
sudo port install librsvg
3335
```

bower.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"name": "Font-Awesome-SVG-PNG",
3+
"main": "Font-Awesome-SVG-PNG.js",
4+
"homepage": "https://github.com/CodeCharmLtd/Font-Awesome-SVG-PNG",
5+
"authors": [
6+
"Damian Kaczmarek <damian@codecharm.co.uk>"
7+
],
8+
"description": "Font Awesome split to individual SVG and PNG files of different sizes along with Node.JS based generator",
9+
"keywords": [
10+
"svg",
11+
"png",
12+
"icons",
13+
"design",
14+
"ui",
15+
"font"
16+
],
17+
"license": "MIT",
18+
"ignore": [
19+
"**/.*",
20+
"node_modules",
21+
"bower_components",
22+
"test",
23+
"tests"
24+
]
25+
}

0 commit comments

Comments
 (0)