-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
64 lines (64 loc) · 1.59 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "font-awesome-assets",
"description": "Convert any of @FortAwesome's Font-Awesome icons to an asset, such as an <svg> tag or a Base64-encoded PNG/SVG <img> tag! It supports Retina devices and custom tag attributes too! This package was built for @CrocodileJS.",
"version": "0.0.9",
"author": "Nick Baugh <[email protected]>",
"bugs": "https://github.com/crocodilejs/font-awesome-assets/issues",
"dependencies": {
"@ladjs/svgfont2js": "^1.0.1",
"cheerio": "^0.22.0",
"font-awesome": "^4.6.3",
"lodash": "^4.16.4",
"svg2png": "^4.0.0"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-crocodile": "^1.0.0",
"eslint-config-crocodile": "^1.0.0",
"jest": "^16.0.2",
"rainbowvis.js": "^1.0.1"
},
"engines": {
"node": ">= 6.x"
},
"homepage": "https://github.com/crocodilejs/font-awesome-assets",
"keywords": [
"awesome",
"base64",
"bootstrap",
"btoa",
"convert",
"converter",
"data",
"data-attr",
"data-uri",
"email",
"encoded",
"export",
"fa",
"font",
"fontawesome",
"html",
"icon",
"image",
"img",
"png",
"render",
"svg",
"tag",
"to",
"uri"
],
"license": "MIT",
"main": "lib/index.js",
"repository": "crocodilejs/font-awesome-assets",
"scripts": {
"compile": "rm -rf lib/ && babel -d lib src",
"lint": "eslint .",
"prepublish": "npm run test",
"jest": "jest",
"test": "npm run lint && npm run jest && npm run compile",
"watch": "babel -w -d lib src"
}
}