forked from mapbox/tile-reduce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.34 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
{
"name": "@mapbox/tile-reduce",
"version": "3.2.0",
"description": "vector tile mapreduce",
"main": "src/index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "eslint src test examples/*/*.js && tap -R spec test/test.*.js",
"cover": "tap test/test.*.js --cov --coverage-report=lcov",
"lint": "eslint src test examples/*/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/mapbox/tile-reduce.git"
},
"author": "morganherlocker",
"license": "ISC",
"bugs": {
"url": "https://github.com/mapbox/tile-reduce/issues"
},
"homepage": "https://github.com/mapbox/tile-reduce",
"dependencies": {
"@turf/bbox-polygon": "^3.7.3",
"binary-split": "^1.0.3",
"function-rate-limit": "^1.1.0",
"mbtiles": "^0.9.0",
"pbf": "^3.0.5",
"queue-async": "^1.2.1",
"request": "^2.79.0",
"stream-array": "^1.1.2",
"through2": "^2.0.3",
"tile-cover": "^3.0.1",
"tilebelt": "^1.0.1",
"vector-tile": "^1.3.0"
},
"devDependencies": {
"eslint": "^3.13.1",
"eslint-config-mourner": "^2.0.1",
"split": "^1.0.0",
"tap": "^9.0.3"
},
"eslintConfig": {
"extends": "mourner",
"rules": {
"indent": [
2,
2
],
"camelcase": 0,
"space-before-function-paren": [
2,
"never"
]
}
}
}