summaryrefslogtreecommitdiff
path: root/package.json
blob: 57452a060b491c8ed09f5bca379ce4a77b57b2e1 (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
49
50
{
  "name": "mapbox-gl-native",
  "version": "3.0.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"
  },
  "licenses": [
    {
      "type": "BSD",
      "url": "https://github.com/mapbox/mapbox-gl-native/blob/master/LICENSE.md"
    }
  ],
  "dependencies": {
    "nan": "^2.1.0",
    "node-pre-gyp": "^0.6.17"
  },
  "bundledDependencies": [
    "node-pre-gyp"
  ],
  "devDependencies": {
    "aws-sdk": "^2.2.21",
    "mapbox-gl-test-suite": "mapbox/mapbox-gl-test-suite#8859b504ef241bca49d4c2f9a79ff4d0bfdf81a1",
    "node-gyp": "^3.2.1",
    "request": "^2.67.0",
    "tape": "^4.2.2"
  },
  "engines": {
    "node": ">=4.2.1"
  },
  "scripts": {
    "install": "node-pre-gyp install --fallback-to-build=false || make node",
    "test": "tape platform/node/test/js/**/*.test.js",
    "test-suite": "node 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"
  }
}