-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 785 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 785 Bytes
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
{
"name": "node-hgt",
"version": "1.2.3",
"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 <per@liedman.net>",
"license": "ISC",
"dependencies": {
"extend": "^3.0.2",
"lru-cache": "^4.1.3",
"promise": "^8.0.0",
"request": "^2.88.2",
"yauzl": "^2.10.0"
},
"devDependencies": {
"tap-spec": "^5.0.0",
"tape": "^5.0.0"
}
}