forked from mapbox/vtcomposite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.79 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.79 KB
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
{
"name": "@mapbox/vtcomposite",
"version": "2.3.1",
"description": "Compositing operations on Vector Tiles (c++ bindings using N-API)",
"url": "http://github.com/mapbox/vtcomposite",
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "git@github.com:mapbox/vtcomposite.git"
},
"scripts": {
"lint": "eslint test/*.js",
"test": "tape test/*.test.js",
"install": "node-pre-gyp install --fallback-to-build"
},
"author": "Mapbox",
"license": "ISC",
"dependencies": {
"@mapbox/mason-js": "^0.1.5",
"@mapbox/node-pre-gyp": "^1.0.8",
"node-addon-api": "^4.3.0"
},
"devDependencies": {
"@mapbox/cloudfriend": "^5.1.0",
"@mapbox/eslint-config-mapbox": "^3.0.0",
"@mapbox/mvt-fixtures": "^3.9.0",
"@mapbox/sphericalmercator": "^1.2.0",
"@mapbox/tilebelt": "^1.0.2",
"@mapbox/vector-tile": "^1.3.1",
"aws-sdk": "^2.1074.0",
"bytes": "^3.1.2",
"d3-queue": "^3.0.7",
"eslint": "^8.10.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"mapnik": "^4.5.9",
"minimist": "^1.2.5",
"pbf": "^3.2.1",
"tape": "^4.15.1"
},
"binary": {
"module_name": "vtcomposite",
"module_path": "./lib/binding/",
"host": "https://mapbox-node-binary.s3.amazonaws.com",
"remote_path": "./{name}/v{version}/{configuration}/{toolset}/",
"package_name": "{platform}-{arch}.tar.gz"
},
"eslintConfig": {
"env": {
"node": true
},
"extends": [
"@mapbox/eslint-config-mapbox",
"plugin:promise/recommended"
],
"plugins": [
"promise"
],
"rules": {
"comma-dangle": "off",
"consistent-return": "warn",
"curly": [
"error",
"all"
],
"dot-notation": "error",
"require-await": "error"
}
}
}