forked from mapbox/tilelive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.36 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
{
"name": "tilelive",
"version": "5.12.2",
"main": "./lib/tilelive.js",
"description": "API for various map tile backends",
"url": "http://github.com/mapbox/tilelive.js",
"keywords": [
"map",
"mapnik",
"tiles"
],
"licenses": [
{
"type": "BSD"
}
],
"repository": {
"type": "git",
"url": "http://github.com/mapbox/tilelive.js.git"
},
"author": {
"name": "Mapbox",
"url": "https://www.mapbox.com/",
"email": "[email protected]"
},
"contributors": [
"Tom MacWright <tmcw>",
"Will White <willwhite>",
"Dane Springmeyer <springmeyer>",
"Young Hahn <yhahn>",
"Konstantin Käfer <kkaefer>",
"Blake Thompson <flippmoke>"
],
"dependencies": {
"minimist": "~0.2.0",
"progress-stream": "~0.5.x",
"sphericalmercator": "~1.0.1",
"queue-async": "~1.0.7"
},
"devDependencies": {
"concat-stream": "1.4.x",
"coveralls": "~2.11.1",
"eslint": "^0.24.0",
"istanbul": "~0.3.0",
"mbtiles": "~0.8.2",
"stream-combiner": "^0.2.2",
"tape": "2.13.3",
"tilejson": "~1.0.0"
},
"bin": {
"tilelive-copy": "./bin/tilelive-copy"
},
"engines": {
"node": ">= 0.10.0"
},
"scripts": {
"test": "eslint --no-eslintrc -c .eslintrc lib/*.js && tape test/*.test.js",
"cov": "istanbul cover tape test/*.test.js && coveralls < ./coverage/lcov.info"
}
}