-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.19 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
{
"name": "fontpls",
"description": "A typeface conversion CLI tool for making webfonts",
"version": "1.0.1",
"homepage": "https://github.com/undone-labs/fontpls",
"author": {
"name": "Undone Labs",
"email": "[email protected]"
},
"contributors": [
{
"name": "Orun Bhuiyan",
"url": "https://github.com/orvn"
},
{
"name": "tikagan",
"url": "https://github.com/tikagan"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/undone-labs/fontpls.git"
},
"bugs": {
"url": "https://github.com/undone-labs/fontpls/issues"
},
"license": "APL-2.0",
"type": "module",
"main": "index.js",
"engines": {
"node": ">=10.0.0"
},
"bin": {
"fontpls": "./cli.js"
},
"scripts": {
"test": "mocha"
},
"devDependencies": {
"mocha": "^10.2.0"
},
"keywords": [
"typeface",
"fonts",
"webfonts",
"woff",
"eot",
"ttf",
"otf"
],
"dependencies": {
"chalk": "^5.3.0",
"chalk-animation": "^2.0.3",
"figlet": "^1.7.0",
"fontmin": "^1.0.1",
"gradient-string": "^2.0.2",
"gulp-rename": "^2.0.0",
"inquirer": "^9.2.11",
"nanospinner": "^1.1.0"
}
}