-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
59 lines (59 loc) · 1.25 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
{
"name": "fontfacegen",
"description": "Browser font-face generator for creating browser usable fonts from ttf's or otf's",
"type": "module",
"version": "0.5.0",
"homepage": "https://github.com/dotcore64/fontfacegen",
"author": {
"name": "Karl Bowden",
"email": "[email protected]",
"url": "http://karlbowden.com/"
},
"exports": {
".": "./index.js",
"./package.json": "./package.json"
},
"repository": {
"type": "git",
"url": "git://github.com/dotcore64/fontfacegen.git"
},
"bugs": {
"url": "https://github.com/dotcore64/fontfacegen/issues"
},
"license": "MIT",
"engines": {
"node": ">= 14.0.0"
},
"scripts": {
"lint": "eslint --cache .",
"test": "node test/index.js",
"cover": "c8 npm test"
},
"keywords": [
"font-face",
"fontface",
"font",
"face",
"web-fonts",
"webfonts",
"web",
"ttf",
"otf",
"svg",
"eot",
"css"
],
"dependencies": {
"ttf2eot": "^3.1.0",
"ttf2svg": "^1.2.0",
"ttf2woff2": "^6.0.1",
"which": "^5.0.0"
},
"devDependencies": {
"c8": "^10.1.3",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-node": "^11.1.0"
}
}