-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2 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
{
"name": "geohash-to-geojson",
"version": "4.2.1",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"src"
],
"description": "Library to convert geohashes to multiple GeoJSON polygons or a single GeoJSON FeatureCollection",
"repository": "https://github.com/alrico88/geohash-to-geojson",
"author": "Alberto Rico",
"license": "MIT",
"dependencies": {
"@turf/circle": "^6.3.0",
"cheap-ruler": "^3.0.1",
"ngeohash": "^0.6.3"
},
"sideEffects": false,
"engines": {
"node": ">=10"
},
"devDependencies": {
"@turf/bbox": "^6.3.0",
"@types/geojson": "^7946.0.7",
"@types/ngeohash": "^0.6.2",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"c8": "^7.11.0",
"coveralls": "^3.1.0",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.1.0",
"husky": "^7.0.4",
"tsup": "^5.11.13",
"typedoc": "^0.22.11",
"typedoc-plugin-markdown": "^3.11.12",
"typescript": "^4.5.5",
"vite": "^2.7.13",
"vitest": "^0.2.5"
},
"scripts": {
"start": "pnpm run build -- --watch src",
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
"test": "vitest run",
"coverage": "vitest run --coverage",
"lint": "eslint --cache --fix --ignore-path .gitignore --ext .ts,.js src",
"prepare": "pnpm run build",
"docs": "typedoc src/index.ts --readme README.md --gitRevision master",
"coveralls": "vitest run --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"husky": {
"hooks": {
"pre-commit": "pnpm run lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"keywords": [
"geojson",
"geohash",
"featurecollection",
"convert",
"polygon"
]
}