summaryrefslogtreecommitdiff
path: root/package.json
blob: 96d302974b62ef128246814f03716b77f1fc4f66 (plain)
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
{
  "name": "mapbox-gl-native",
  "version": "3.3.2",
  "description": "Renders map tiles with Mapbox GL",
  "keywords": [
    "mapbox",
    "gl"
  ],
  "main": "lib/mapbox-gl-native.node",
  "repository": {
    "type": "git",
    "url": "git://github.com/mapbox/mapbox-gl-native.git"
  },
  "license": "BSD-2-Clause",
  "dependencies": {
    "node-pre-gyp": "^0.6.28"
  },
  "devDependencies": {
    "aws-sdk": "^2.3.5",
    "csscolorparser": "^1.0.2",
    "ejs": "^2.4.1",
    "express": "^4.11.1",
    "mapbox-gl-shaders": "mapbox/mapbox-gl-shaders#4d1f89514bf03536c8e682439df165c33a37122a",
    "mapbox-gl-style-spec": "mapbox/mapbox-gl-style-spec#83b1a3e5837d785af582efd5ed1a212f2df6a4ae",
    "mapbox-gl-test-suite": "mapbox/mapbox-gl-test-suite#8e38705747dee1279a8503d05593543eb9af3ce1",
    "node-cmake": "^1.2.1",
    "request": "^2.72.0",
    "tape": "^4.5.1"
  },
  "engines": {
    "node": ">=4.2.1"
  },
  "scripts": {
    "preinstall": "npm install node-pre-gyp",
    "install": "node-pre-gyp install --fallback-to-build=false || BUILDTYPE=Release make node",
    "test": "tape platform/node/test/js/**/*.test.js",
    "test-memory": "node --expose-gc platform/node/test/memory.test.js",
    "test-suite": "node platform/node/test/render.test.js && node platform/node/test/query.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"
  }
}