summaryrefslogtreecommitdiff
path: root/package.json
blob: adda5fef5b8e4ebd1acb005400b50b66598f9d8c (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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
  "name": "@mapbox/mapbox-gl-native",
  "version": "5.0.0",
  "description": "Renders map tiles with Mapbox GL",
  "keywords": [
    "mapbox",
    "gl"
  ],
  "main": "platform/node/index.js",
  "repository": {
    "type": "git",
    "url": "git://github.com/mapbox/mapbox-gl-native.git"
  },
  "license": "BSD-2-Clause",
  "dependencies": {
    "@mapbox/cmake-node-module": "^1.2.0",
    "minimatch": "^3.0.4",
    "node-pre-gyp": "^0.10.2",
    "npm-run-all": "^4.0.2"
  },
  "devDependencies": {
    "@mapbox/flow-remove-types": "^1.3.0-await.upstream.2",
    "@mapbox/mvt-fixtures": "3.5.1",
    "@octokit/plugin-retry": "^2.2.0",
    "@octokit/rest": "^16.0.0",
    "aws-sdk": "^2.285.1",
    "csscolorparser": "~1.0.2",
    "d3-queue": "3.0.7",
    "diff": "4.0.1",
    "ejs": "^2.5.7",
    "esm": "~3.0.84",
    "express": "^4.11.1",
    "json-stringify-pretty-compact": "^2.0.0",
    "jsonwebtoken": "^8.3.0",
    "lodash": "^4.16.4",
    "lodash.template": "4.5.0",
    "mapbox-gl-styles": "2.0.2",
    "pixelmatch": "^4.0.2",
    "pngjs": "^3.4.0",
    "pretty-bytes": "^5.1.0",
    "request": "^2.88.0",
    "semver": "^5.5.0",
    "shuffle-seed": "1.1.6",
    "st": "1.2.2",
    "tape": "^4.5.1",
    "xcode": "^1.0.0"
  },
  "engines": {
    "node": ">=6"
  },
  "scripts": {
    "install": "node-pre-gyp install --fallback-to-build=false",
    "test": "tape platform/node/test/js/**/*.test.js",
    "test-memory": "node --expose-gc platform/node/test/memory.test.js",
    "test-expressions": "node -r esm platform/node/test/expression.test.js",
    "test-render": "node -r esm platform/node/test/render.test.js",
    "test-query": "node -r esm platform/node/test/query.test.js"
  },
  "gypfile": true,
  "binary": {
    "module_name": "mbgl",
    "module_path": "./lib/{node_abi}",
    "host": "https://mapbox-node-binary.s3.amazonaws.com",
    "remote_path": "./{name}/v{version}",
    "package_name": "{node_abi}-{platform}-{arch}-{configuration}.tar.gz"
  }
}