-
Notifications
You must be signed in to change notification settings - Fork 71
/
package.json
43 lines (43 loc) · 888 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
{
"author": "mattbornski",
"contributors": [
"Alan Gutierrez <[email protected]> (http://github.com/bigeasy)",
"Philipp Fehre <[email protected]> (http://github.com/sideshowcoder)"
],
"name": "tzwhere",
"description": "Determine timezone from lat/long",
"version": "1.0.1",
"main": "lib/index.js",
"directories": {
"lib": "lib",
"test": "test"
},
"keywords": [
"timezone",
"tz",
"latitude",
"lat",
"longitude",
"long",
"lon",
"geojson"
],
"repository": {
"type": "git",
"url": "https://github.com/mattbornski/tzwhere.git"
},
"engines": {
"node": ">= 0.6"
},
"dependencies": {
"geolib": "1.2.5",
"simplesets": "1.2.0",
"timezone": "0.0.48"
},
"devDependencies": {
"mocha": "1.x"
},
"scripts": {
"test": "for i in `ls test/*.js`; do mocha $i; done"
}
}