forked from mapbox/node-fontnik
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.46 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
{
"name": "fontnik",
"version": "0.5.3",
"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": {
"glob": "^7.1.1",
"minimist": "^0.2.0",
"nan": "~2.10.0",
"node-pre-gyp": "^0.12.0",
"queue-async": "^1.0.7"
},
"devDependencies": {
"@mapbox/cloudfriend": "^1.9.1",
"aws-sdk": "^2.22.0",
"benchmark": "^1.0.0",
"mkdirp": "^0.5.1",
"pbf": "^1.3.5",
"tape": "^4.2.2"
},
"bin": {
"build-glyphs": "./bin/build-glyphs",
"font-inspect": "./bin/font-inspect"
},
"scripts": {
"install": "node-pre-gyp install --fallback-to-build=true",
"test": "./node_modules/.bin/tape test/**/*.test.js",
"prepublishOnly": "npm ls"
},
"binary": {
"module_name": "fontnik",
"module_path": "./lib/binding/",
"host": "https://mapbox-node-binary.s3.amazonaws.com",
"remote_path": "./{name}/v{version}/{configuration}/{toolset}/",
"package_name": "{node_abi}-{platform}-{arch}.tar.gz"
}
}