-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 861 Bytes
/
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
{
"name": "@hlorenzi/font",
"version": "1.2.0",
"description": "Utilities and a CLI for extracting glyphs and metadata from font files.",
"repository": "github:hlorenzi/font-js",
"homepage": "https://github.com/hlorenzi/font-js#readme",
"bugs": "https://github.com/hlorenzi/font-js/issues",
"keywords": [
"font",
"glyph",
"extract",
"ttf",
"otf",
"cli"
],
"type": "module",
"main": "./index.js",
"scripts": {
"start": "node cli.js",
"build": "webpack",
"watch": "webpack --watch --mode development",
"test": "node test.js"
},
"author": "hlorenzi",
"license": "ISC",
"bin": {
"font": "cli.js"
},
"dependencies": {
"@hlorenzi/buffer": "^1.2.0",
"minimist": "^1.2.0",
"pngjs": "^3.3.3"
},
"devDependencies": {
"webpack": "^4.36.1",
"webpack-cli": "^3.3.6"
}
}