-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
45 lines (45 loc) · 920 Bytes
/
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
{
"name": "printlet",
"version": "0.5.0",
"description": "Generate static images from tiles and draw suff on top.",
"author": "Christopher Fredén <c.freden@gmail.com>",
"contributors": [
"Bernd Loeber <bernd.loeber@gmail.com>"
],
"repository": {
"type": "git",
"url": "https://github.com/kartena/printlet.git"
},
"licenses": [
{
"type": "MIT",
"url": "https://raw.github.com/kartena/printlet/master/LICENSE"
}
],
"engines": {
"node": ">=0.8"
},
"dependencies": {
"proj4": "*",
"canvas": "*",
"get": "*",
"promise": "*"
},
"devDependencies": {
"coffee-script": "*"
},
"main": "./lib/printlet.js",
"bin": {
"printlet": "./examples/server.js"
},
"files": [
"lib/",
"examples/osm.json",
"examples/server.js",
"LICENSE",
"README.md"
],
"scripts": {
"prepublish": "coffee -cb -o lib coffee"
}
}