node-fontnik/package.json
2016-05-03 16:31:28 -04:00

59 lines
1.6 KiB
JSON

{
"name": "fontnik",
"version": "0.4.4",
"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": {
"minimist": "^0.2.0",
"nan": "^2.1.0",
"node-pre-gyp": "^0.6.17",
"queue-async": "^1.0.7"
},
"bundledDependencies": [
"node-pre-gyp"
],
"devDependencies": {
"benchmark": "^1.0.0",
"buffer-equal": "^1.0.0",
"mkdirp": "^0.5.1",
"pbf": "^1.3.5",
"tap": "^5.7.1",
"tape": "^4.2.2"
},
"bin": {
"build-glyphs": "./bin/build-glyphs",
"font-inspect": "./bin/font-inspect"
},
"scripts": {
"install": "node-pre-gyp install --fallback-to-build=false || (source ./scripts/install_mason.sh && node-pre-gyp install --build-from-source)",
"pretest": "./node_modules/.bin/pbf proto/glyphs.proto > test/format/glyphs.js",
"test": "./node_modules/.bin/tap test/shape.test.js"
},
"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"
}
}