-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
74 lines (74 loc) · 2.01 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
65
66
67
68
69
70
71
72
73
74
{
"name": "slds-icons-font",
"version": "1.0.0",
"description": "This pack was created with [IcoMoon App](https://icomoon.io/app/#/select) with [Salesforce Lightning Design System](https://www.lightningdesignsystem.com)",
"main": "index.js",
"scripts": {
"scale": "node svgScale.js",
"font": "svgtofont --sources ./tmp --output ./dist/fonts",
"scaleandfont": "mkdir tmp && cp ./icons/**/*.svg ./tmp && npm run scale && npm run font && rm -rf tmp",
"noscaleandfont": "mkdir tmp && cp ./icons/**/*.svg ./tmp && npm run font && rm -rf tmp"
},
"author": "Lucas Ennouchi",
"license": "ISC",
"dependencies": {
"@svgdotjs/svg.js": "^3.2.0",
"fs-extra": "^11.2.0",
"svgdom": "^0.1.19",
"svgtofont": "^4.1.2"
},
"svgtofont": {
"fontName": "slds-icons",
"classPrefix": "slds-icon-",
"types": [
"woff2",
"woff",
"ttf",
"eot",
"svg"
],
"svgicons2svgfont": {
"fontHeight": 1000,
"normalize": true
},
"css": true,
"cssDest": "dist/css/slds-icons.css",
"outSVGReact": false,
"website": {
"title": "slds icons font",
"logo": "awef",
"version": "1.0.0",
"meta": {
"description": "Converts SVG fonts to TTF/EOT/WOFF/WOFF2/SVG format.",
"keywords": "svgtofont,TTF,EOT,WOFF,WOFF2,SVG"
},
"description": "",
"corners": {
"url": "https://github.com/ennoucas/slds-icons-font",
"width": 62,
"height": 62,
"bgColor": "#dc3545"
},
"links": [
{
"title": "GitHub",
"url": "https://github.com/ennoucas/slds-icons-font"
},
{
"title": "Feedback",
"url": "https://github.com/ennoucas/slds-icons-font/issues"
},
{
"title": "Font Class",
"url": "index.html"
},
{
"title": "Unicode",
"url": "unicode.html"
}
],
"footerInfo": "Licensed under MIT. (Yes it's free and"
}
},
"type": "module"
}