summaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
authorMike Morris <michael.patrick.morris@gmail.com>2015-09-01 15:51:29 -0400
committerMike Morris <michael.patrick.morris@gmail.com>2015-09-01 15:51:29 -0400
commit0e79d56b0939de9f4722350a34ab76554a23431c (patch)
treeb4fd9f7dbebfcdde7fb1445d1dc4671daa1607d7 /package.json
parentc4c3b5bc71c38fe6d6c0df0ddb38c57dfd2767ab (diff)
downloadqtlocation-mapboxgl-0e79d56b0939de9f4722350a34ab76554a23431c.tar.gz
move package.json and binding.gyp to root, drop tiles.tilejson
Diffstat (limited to 'package.json')
-rw-r--r--package.json48
1 files changed, 48 insertions, 0 deletions
diff --git a/package.json b/package.json
new file mode 100644
index 0000000000..0063cc9898
--- /dev/null
+++ b/package.json
@@ -0,0 +1,48 @@
+{
+ "name": "mapbox-gl-native",
+ "version": "1.1.3",
+ "description": "Renders map tiles with Mapbox GL",
+ "keywords": [
+ "mapbox",
+ "gl"
+ ],
+ "main": "lib/mapbox-gl-native.node",
+ "repository": {
+ "type": "git",
+ "url": "git://github.com/mapbox/node-mapbox-gl-native.git"
+ },
+ "licenses": [
+ {
+ "type": "BSD",
+ "url": "https://github.com/mapbox/node-mapbox-gl-native/blob/master/LICENSE.txt"
+ }
+ ],
+ "dependencies": {
+ "nan": "^1.9.0",
+ "node-pre-gyp": "^0.6.9"
+ },
+ "bundledDependencies": [
+ "node-pre-gyp"
+ ],
+ "devDependencies": {
+ "aws-sdk": "^2.1.47",
+ "mkdirp": "^0.5.1",
+ "pngjs": "^0.4.0",
+ "request": "^2.61.0",
+ "st": "^0.5.5",
+ "tape": "^4.2.0"
+ },
+ "scripts": {
+ "install": "node-pre-gyp install --fallback-to-build=false || make node",
+ "test": "tape platform/node/test/js/**/*.test.js",
+ "test-suite": "tape platform/node/test/render.test.js"
+ },
+ "gypfile": true,
+ "binary": {
+ "module_name": "mapbox-gl-native",
+ "module_path": "./lib/",
+ "host": "https://mapbox-node-binary.s3.amazonaws.com",
+ "remote_path": "./{name}/v{version}",
+ "package_name": "{node_abi}-{platform}-{arch}.tar.gz"
+ }
+}