-
Notifications
You must be signed in to change notification settings - Fork 65
/
Copy pathpackage.json
57 lines (57 loc) · 1.52 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
{
"name": "fontnik",
"version": "0.7.2",
"description": "A library that delivers a range of glyphs rendered as SDFs (signed distance fields) in a protobuf.",
"keywords": [
"font",
"text",
"glyph",
"freetype",
"sdf"
],
"url": "https://github.com/mapbox/node-fontnik",
"bugs": "https://github.com/mapbox/node-fontnik/issues",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/mapbox/node-fontnik.git"
},
"licenses": [
{
"type": "BSD",
"url": "https://github.com/mapbox/node-fontnik/blob/master/LICENSE.txt"
}
],
"dependencies": {
"d3-queue": "^3.0.7",
"glob": "^7.1.6",
"minimist": "^1.2.5",
"node-addon-api": "^2.0.1",
"node-gyp-build": "^4.6.0",
"prebuildify": "^5.0.1"
},
"devDependencies": {
"@mapbox/cloudfriend": "^5.1.1",
"aws-sdk": "^2.1227.0",
"benchmark": "^1.0.0",
"mkdirp": "^0.5.1",
"node-gyp": "^9.3.1",
"pbf": "^1.3.5",
"protocol-buffers": "^4.1.0",
"tape": "^4.2.2"
},
"bin": {
"build-glyphs": "./bin/build-glyphs",
"font-inspect": "./bin/font-inspect"
},
"scripts": {
"download-binaries": "gh run download \"$(gh run list -b \"$(git branch --show-current)\" -L 1 --json databaseId --jq \".[].databaseId\")\"",
"install": "node-gyp-build",
"test": "./node_modules/.bin/tape test/**/*.test.js",
"prebuildify": "prebuildify --napi --tag-uv --tag-libc --strip"
},
"binary": {
"module_name": "fontnik",
"module_path": "./lib/binding/"
}
}