-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.js
80 lines (71 loc) · 2.46 KB
/
index.js
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
75
76
77
78
79
80
const path = require("path");
module.exports = {
"root": path.join(__dirname, "fonts"),
// Package info
"package": {
"name": "connect-fonts-zxx",
"homepage": "https://github.com/shane-tomlinson/connect-fonts-zxx",
"repourl": "https://github.com/shane-tomlinson/connect-fonts-zxx",
"bugsurl": false
},
// Package author info
"author": {
"name": "Shane Tomlinson",
"emails": "shane@shanetomlinson.com,stomlinson@mozilla.com,set117@yahoo.com",
"urls": "https://shanetomlinson.com",
"githubs": "https://github.com/shane-tomlinson,https://github.com/stomlinson",
"twitter": "@shane_tomlinson"
},
// Common font information
"font_common": {
"description": "The name ZXX comes from the Library of Congress' Alpha-3 ISO 639-2 -- codes for the representation of names of languages. ZXX is used to declare No linguistic content; Not applicable. Free Open Type Font to open up governments. Download & disperse in your convenience",
"names": "zxx-bold,zxx-camo,zxx-noise,zxx-sans,zxx-xed",
"family": "ZXX Bold",
"copyright": "Copyright (c) 2012 by Sang Mun. All rights reserved.",
"designer": "Sang Mun",
"url_designer": "http://www.sang-mun.com",
"url_vendor": "http://z-x-x.org/"
},
// where to find a locale's fonts in the fonts directory
"locale-to-subdirs": {
},
// what font types are enabled and what are the extensions of
// the font files.
//
// valid types are embedded-opentype, woff, truetype, svg
"enabled-types": [ "eot", "woff", "ttf", "svg" ],
// The fonts. The name of the font must be the same as the font
// in the fonts directory.
"fonts": {
"zxx-camo": {
"fontFamily": "ZXX Bold",
"fontStyle": "normal",
"fontWeight": "400",
"local": [ "ZXX-Camo", "ZXX-Camo" ]
},
"zxx-noise": {
"fontFamily": "ZXX Bold",
"fontStyle": "normal",
"fontWeight": "400",
"local": [ "ZXX-Noise", "ZXX-Noise" ]
},
"zxx-sans": {
"fontFamily": "ZXX Bold",
"fontStyle": "normal",
"fontWeight": "400",
"local": [ "ZXX-Sans", "ZXX-Sans" ]
},
"zxx-xed": {
"fontFamily": "ZXX Bold",
"fontStyle": "normal",
"fontWeight": "400",
"local": [ "ZXX-Xed", "ZXX-Xed" ]
},
"zxx-bold-regular": {
"fontFamily": "ZXX Bold",
"fontStyle": "normal",
"fontWeight": "400",
"local": [ "ZXX-Bold", "ZXX-Bold" ]
}
}
};