forked from evansiroky/node-geo-tz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.6 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
51
52
53
54
55
56
57
58
59
{
"name": "geo-tz",
"version": "0.0.0-semantically-released",
"description": "A node.js module to find the timezone at specific gps coordinates",
"keywords": [
"timezone"
],
"author": "Evan Siroky",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/evansiroky/node-geo-tz.git"
},
"bugs": {
"url": "https://github.com/evansiroky/node-geo-tz/issues"
},
"homepage": "https://github.com/evansiroky/node-geo-tz#readme",
"engines": {
"node": ">=6"
},
"main": "index.js",
"scripts": {
"cover": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha -- tests/**/*.js --max-old-space-size=8192",
"prepublish": "node scripts/unzip-data.js",
"semantic-release": "semantic-release",
"test": "mocha --max-old-space-size=8192 \"tests/**/*.js\"",
"updateTzData": "node scripts/update-data.js"
},
"devDependencies": {
"async": "^3.1.0",
"chai": "^4.2.0",
"cz-conventional-changelog": "^2.0.0",
"follow-redirects": "^1.7.0",
"fs-extra": "^8.1.0",
"istanbul": "^0.4.2",
"jsts": "^2.0.4",
"lodash": "^4.17.11",
"mkdirp": "^0.5.1",
"mocha": "^6.1.4",
"nock": "^10.0.6",
"rimraf": "^2.6.3",
"semantic-release": "^15.13.18",
"travis-deploy-once": "^5.0.11",
"yauzl": "^2.10.0",
"yazl": "^2.5.1"
},
"dependencies": {
"@turf/boolean-point-in-polygon": "^6.0.1",
"@turf/helpers": "^6.1.4",
"geobuf": "^3.0.1",
"pbf": "^3.2.0",
"timed-cache": "^1.1.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}