-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
63 lines (63 loc) · 1.42 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
{
"name": "@mapbox/tile-reduce",
"version": "3.3.1",
"description": "vector tile mapreduce",
"main": "src/index.js",
"directories": {
"test": "test"
},
"scripts": {
"lint": "eslint src test examples/*/*.js",
"pretest": "npm run lint",
"test": "tap -R spec test/test.*.js",
"cover": "tap test/test.*.js --cov --coverage-report=lcov",
"prepublishOnly": "npm run test"
},
"files": [
"src",
"examples"
],
"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": {
"@mapbox/mbtiles": "^0.12.1",
"@mapbox/tile-cover": "^3.0.2",
"@mapbox/vector-tile": "^1.3.1",
"@turf/bbox-polygon": "^6.3.0",
"binary-split": "^1.0.5",
"function-rate-limit": "^1.1.0",
"pbf": "^3.2.1",
"queue-async": "^1.2.1",
"request": "^2.88.0",
"stream-array": "^1.1.2",
"through2": "^3.0.0"
},
"devDependencies": {
"eslint": "^3.19.0",
"eslint-config-mourner": "^2.0.1",
"split": "^1.0.1",
"tap": "^12.4.0"
},
"eslintConfig": {
"extends": "mourner",
"rules": {
"indent": [
2,
2
],
"camelcase": 0,
"space-before-function-paren": [
2,
"never"
]
}
}
}