forked from lvgl/lv_font_conv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.47 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
{
"name": "lv_font_conv",
"version": "1.1.1",
"homepage": "https://Changes729.github.io/lv_font_conv",
"description": "Rasterize vector fonts for embedded use. Supports subsettings & merge.",
"keywords": [
"font",
"convertor",
"embedded"
],
"repository": "littlevgl/lv_font_conv",
"license": "MIT",
"files": [
"lv_font_conv.js",
"lib/"
],
"bin": {
"lv_font_conv": "lv_font_conv.js"
},
"scripts": {
"start": "parcel ./web/index.html --open",
"build": "parcel build ./web/index.html ./web/content.html --public-url ./",
"build:dockerimage": "docker build -t lv_font_conv_freetype ./support",
"build:freetype": "docker run --rm -v $(pwd):/src/lv_font_conv -it lv_font_conv_freetype ./lv_font_conv/support/build.sh",
"lint": "eslint .",
"test": "npm run lint && nyc mocha",
"coverage": "npm run test && nyc report --reporter html",
"predeploy": "yarn build",
"deploy": "gh-pages -d dist"
},
"dependencies": {
"argparse": "^2.0.0",
"bit-buffer": "^0.2.4",
"debug": "^4.1.1",
"lodash": "^4.17.20",
"make-error": "^1.3.5",
"mkdirp": "^1.0.4",
"opentype.js": "^1.1.0",
"pngjs": "^5.0.0"
},
"devDependencies": {
"eslint": "^7.7.0",
"file-saver": "^2.0.2",
"gh-pages": "^2.2.0",
"mocha": "^8.1.1",
"nyc": "^15.1.0",
"parcel-bundler": "^1.12.4",
"posthtml-include": "^1.3.2",
"roboto-fontface": "^0.10.0"
},
"browserslist": [
"last 1 Chrome version"
]
}