forked from evansiroky/node-geo-tz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.75 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
60
61
{
"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": ">=4"
},
"main": "index.js",
"scripts": {
"codeclimate": "npm run cover && npm run codeclimate-send",
"codeclimate-send": "./node_modules/.bin/codeclimate-test-reporter < coverage/lcov.info",
"cover": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha -- tests/**/*.js",
"prepublish": "node scripts/unzip-data.js",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"test": "mocha \"tests/**/*.js\"",
"updateTzData": "node scripts/update-data.js"
},
"devDependencies": {
"async": "^2.1.5",
"chai": "^4.1.2",
"codeclimate-test-reporter": "^0.5.0",
"cz-conventional-changelog": "^2.0.0",
"follow-redirects": "^1.2.1",
"fs-extra": "^4.0.2",
"istanbul": "^0.4.2",
"jsts": "^1.3.0",
"lodash": "^4.17.4",
"mkdirp": "^0.5.1",
"mocha": "^4.0.0",
"nock": "^9.0.9",
"rimraf": "^2.6.1",
"semantic-release": "^8.0.0",
"yauzl": "^2.6.0",
"yazl": "^2.4.2"
},
"dependencies": {
"@turf/boolean-point-in-polygon": "^6.0.1",
"@turf/helpers": "^6.1.3",
"geobuf": "^3.0.0",
"pbf": "^3.0.5",
"timed-cache": "^1.1.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}