forked from hemamaps/node-hgt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 809 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
{
"name": "node-hgt",
"version": "1.2.1",
"description": "Query hgt files (typically SRTM elevation data) with performance.",
"homepage": "https://github.com/perliedman/node-hgt",
"repository": {
"type": "git",
"url": "https://github.com/perliedman/node-hgt.git"
},
"main": "src/index.js",
"scripts": {
"test": "tape ./test/*spec.js | tap-spec",
"perf": "node ./test/perf-test.js"
},
"keywords": [
"hgt",
"srtm",
"elevation",
"altitude"
],
"author": "Per Liedman <[email protected]>",
"license": "ISC",
"dependencies": {
"extend": "^3.0.0",
"lru-cache": "^4.0.1",
"mmap.js": "^1.0.0",
"promise": "^8.0.0",
"request": "^2.54.0",
"yauzl": "^2.2.1"
},
"devDependencies": {
"tap-spec": "^4.1.1",
"tape": "^4.2.2"
}
}