-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
50 lines (50 loc) · 1.07 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
{
"name": "nodetiles-core",
"version": "0.0.5",
"description": "Joyful map rendering with Node.js.",
"contributors": [
{
"name": "Rob Bracket",
"email": "[email protected]"
},
{
"name": "Ben Sheldon",
"email": "[email protected]"
},
{
"name": "Alex Yule",
"email": "[email protected]"
}
],
"license": "BSD",
"main": "./index",
"repository": {
"type": "git",
"url": "https://github.com/nodetiles/nodetiles-core.git"
},
"engines": {
"node": ">0.8.x",
"npm": ">1.1.x"
},
"dependencies": {
"async": "~0.2",
"lodash": "~1.2",
"canvas": ">=1.0 <2.0",
"proj4js": "~0.3.0",
"proj4js-defs": ">=0.0.1",
"carto": "~0.9.5",
"shp": "https://github.com/yuletide/node-shp/tarball/master"
},
"devDependencies": {
"mocha": "~1.17.1",
"chai": "~1.9.0",
"sinon": "~1.8.0",
"istanbul": "~0.2.4",
"coveralls": "~2.7.1",
"imagediff": "~1.0.8"
},
"scripts": {
"pretest": "npm ls --depth=Infinity > /dev/null",
"test": "mocha"
}
}