forked from maplibre/maplibre-native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.24 KB
/
package.json
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
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@maplibre/maplibre-gl-native",
"version": "5.4.0",
"description": "Renders map tiles with MapLibre Native",
"keywords": [
"maplibre",
"gl"
],
"directories": {
"lib": "lib"
},
"files": [
"lib",
"platform/node/index.d.ts"
],
"main": "platform/node/index.js",
"types": "platform/node/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/maplibre/maplibre-native.git"
},
"license": "BSD-2-Clause",
"dependencies": {
"@acalcutt/node-pre-gyp": "^1.0.14",
"@acalcutt/node-pre-gyp-github": "1.4.8",
"minimatch": "^9.0.4",
"npm-run-all": "^4.1.5"
},
"devDependencies": {
"@aws-sdk/client-device-farm": "^3.556.0",
"@aws-sdk/client-s3": "^3.556.0",
"@mapbox/flow-remove-types": "^2.0.0",
"@mapbox/mvt-fixtures": "3.10.0",
"@octokit/plugin-retry": "^7.1.0",
"@octokit/rest": "^20.1.0",
"@types/node": "^20.12.7",
"argparse": "^2.0.1",
"csscolorparser": "~1.0.3",
"d3-queue": "3.0.7",
"diff": "5.2.0",
"ejs": "^3.1.9",
"esm": "~3.2.25",
"express": "^4.19.2",
"json-stringify-pretty-compact": "^4.0.0",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"lodash.template": "4.5.0",
"mapbox-gl-styles": "2.0.2",
"pixelmatch": "^5.3.0",
"pngjs": "^7.0.0",
"pretty-bytes": "^6.1.1",
"request": "^2.88.0",
"semver": "^7.6.0",
"shuffle-seed": "1.1.6",
"st": "3.0.0",
"tape": "^5.7.5",
"typescript": "^5.4.5",
"xcode": "^3.0.1"
},
"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://github.com/maplibre/maplibre-native/releases/download/",
"remote_path": "node-v{version}",
"package_name": "{node_abi}-{platform}-{arch}-{configuration}.tar.gz"
}
}