mirror of
https://github.com/mapbox/node-fontnik.git
synced 2026-01-25 16:02:44 +00:00
52 lines
1.2 KiB
JSON
52 lines
1.2 KiB
JSON
{
|
|
"name": "fontnik",
|
|
"version": "0.1.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": {
|
|
"queue-async": "1.0.x",
|
|
"node-pre-gyp": "0.5.15",
|
|
"nan": "~1.2.0"
|
|
},
|
|
"bundledDependencies": [
|
|
"node-pre-gyp"
|
|
],
|
|
"devDependencies": {
|
|
"mocha": "1.20.0",
|
|
"pbf": "0.0.1"
|
|
},
|
|
"bin": {
|
|
"build-glyphs": "./bin/build-glyphs"
|
|
},
|
|
"scripts": {
|
|
"install": "node-pre-gyp install --fallback-to-build",
|
|
"test": "node_modules/.bin/mocha -R spec"
|
|
},
|
|
"binary": {
|
|
"module_name": "fontnik",
|
|
"module_path": "./lib/",
|
|
"host": "https://mapbox-node-binary.s3.amazonaws.com",
|
|
"remote_path": "./{name}/v{version}",
|
|
"package_name": "{node_abi}-{platform}-{arch}.tar.gz"
|
|
}
|
|
}
|