forked from evansiroky/node-geo-tz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.12 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
62
63
64
65
66
67
68
69
70
71
72
73
{
"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": ">=12"
},
"source": "src/find.ts",
"main": "./dist/geo-tz.js",
"module": "./dist/geo-tz.module.js",
"unpkg": "./dist/geo-tz.umd.js",
"types": "dist/find.d.ts",
"scripts": {
"build": "microbundle",
"cover": "nyc -r=lcov -r=text npm run test",
"lint": "eslint scripts src tests --ext .js,.ts",
"semantic-release": "semantic-release",
"test": "mocha -r ts-node/register --max-old-space-size=8192 \"tests/**/*.ts\"",
"updateTzData": "ts-node scripts/update-data.ts"
},
"devDependencies": {
"@types/async": "^3.2.16",
"@types/chai": "^4.3.4",
"@types/follow-redirects": "^1.14.1",
"@types/geobuf": "^3.0.1",
"@types/jsts": "^0.17.14",
"@types/lodash": "^4.14.191",
"@types/mocha": "^10.0.1",
"@types/yauzl": "^2.10.0",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"async": "^3.2.4",
"chai": "^4.3.7",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^5.2.0",
"follow-redirects": "^1.15.2",
"jsts": "2.6.1",
"lodash": "^4.17.21",
"microbundle": "^0.15.1",
"mocha": "^10.1.0",
"nock": "^13.2.9",
"nyc": "^15.1.0",
"prettier": "^2.8.0",
"semantic-release": "^19.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.3",
"yauzl": "^2.10.0"
},
"dependencies": {
"@turf/boolean-point-in-polygon": "^6.5.0",
"@turf/helpers": "^6.5.0",
"geobuf": "^3.0.2",
"pbf": "^3.2.1"
}
}