summaryrefslogtreecommitdiff
path: root/package.json
blob: 10eda356a812979445b5cc1be0979a66ebdd30b4 (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
{
  "name": "mbgl",
  "version": "0.0.1",
  "description": "Renders map tiles with Mapbox GL",
  "keywords": [
    "mapbox",
    "gl"
  ],
  "main": "lib/mbgl.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.4.1",
    "node-pre-gyp": "^0.6.4"
  },
  "bundledDependencies": [
    "node-pre-gyp"
  ],
  "devDependencies": {
    "aws-sdk": "^2.1.9",
    "mapbox-gl-test-suite": "git://github.com/mapbox/mapbox-gl-test-suite#master",
    "mkdirp": "^0.5.0",
    "tape": "^3.5.0"
  },
  "scripts": {
    "install": "node-pre-gyp install || make",
    "test": "make test | tap-spec",
    "rebuild": "make clean && make"
  },
  "gypfile": true,
  "binary": {
    "module_name": "mbgl",
    "module_path": "./lib/",
    "host": "https://mapbox-node-binary.s3.amazonaws.com",
    "remote_path": "./{name}/v{version}",
    "package_name": "{node_abi}-{platform}-{arch}.tar.gz"
  }
}