-
-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
114 lines (114 loc) · 3.44 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"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": ">=16"
},
"funding": {
"url": "https://github.com/sponsors/evansiroky"
},
"main": "dist/find-1970.js",
"exports": {
".": {
"main": "./dist/find-1970.js",
"import": "./dist/find-1970.js",
"require": "./dist/find-1970.js",
"types": "./dist/find-1970.d.ts"
},
"./all": {
"main": "./dist/find-all.js",
"import": "./dist/find-all.js",
"require": "./dist/find-all.js",
"types": "./dist/find-all.d.ts"
},
"./now": {
"main": "./dist/find-now.js",
"import": "./dist/find-now.js",
"require": "./dist/find-now.js",
"types": "./dist/find-now.d.ts"
},
"./dist/find-1970": {
"main": "./dist/find-1970.js",
"import": "./dist/find-1970.js",
"require": "./dist/find-1970.js",
"types": "./dist/find-1970.d.ts"
},
"./dist/find-all": {
"main": "./dist/find-all.js",
"import": "./dist/find-all.js",
"require": "./dist/find-all.js",
"types": "./dist/find-all.d.ts"
},
"./dist/find-now": {
"main": "./dist/find-now.js",
"import": "./dist/find-now.js",
"require": "./dist/find-now.js",
"types": "./dist/find-now.d.ts"
}
},
"scripts": {
"build": "npm-run-all build:*",
"build:all": "microbundle -i src/find-all.ts -o ./dist/find-all.js -f cjs",
"build:1970": "microbundle -i src/find-1970.ts -o ./dist/find-1970.js -f cjs",
"build:now": "microbundle -i src/find-now.ts -o ./dist/find-now.js -f cjs",
"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": "node -r ts-node/register --max-old-space-size=8192 scripts/update-data.ts"
},
"devDependencies": {
"@types/async": "^3.2.24",
"@types/chai": "^4.3.19",
"@types/follow-redirects": "^1.14.4",
"@types/geobuf": "^3.0.4",
"@types/jsts": "^0.17.24",
"@types/lodash": "^4.17.7",
"@types/mocha": "^10.0.7",
"@types/yauzl": "^2.10.3",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"async": "^3.2.6",
"chai": "^4.3.10",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^6.6.0",
"follow-redirects": "^1.15.9",
"jsts": "2.6.1",
"lodash": "^4.17.21",
"microbundle": "^0.15.1",
"mocha": "^10.7.3",
"nock": "^13.4.0",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"prettier": "^3.1.1",
"semantic-release": "^24.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"yauzl": "^3.1.3"
},
"dependencies": {
"@turf/boolean-point-in-polygon": "^7.1.0",
"@turf/helpers": "^7.1.0",
"geobuf": "^3.0.2",
"pbf": "^3.2.1"
}
}