-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.41 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
{
"name": "point-in-geohash",
"version": "1.0.1",
"description": "Check if a point is inside a geohash or generate a random point inside of it",
"source": "src/index.ts",
"main": "./dist/index.js",
"module": "./dist/index.umd.js",
"typings": "./dist/index.d.ts",
"scripts": {
"build": "microbundle",
"dev": "microbundle watch",
"test": "jest",
"coverage": "jest --coverage && cat ./coverage/lcov.info",
"docs": "typedoc src/index.ts --readme README.md --gitRevision master",
"prepublish": "pnpm run build"
},
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/alrico88/point-in-geohash"
},
"keywords": [
"geohash",
"point",
"inside",
"random"
],
"author": "Alberto Rico",
"license": "MIT",
"files": [
"dist",
"src"
],
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/ngeohash": "^0.6.4",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^14.0.0",
"eslint-plugin-import": "^2.24.2",
"jest": "^27.2.0",
"microbundle": "^0.13.3",
"ngeohash": "^0.6.3",
"ts-jest": "^27.0.5",
"tslib": "^2.3.1",
"typedoc": "^0.22.3",
"typedoc-plugin-markdown": "^3.11.0"
},
"dependencies": {
"bbox-helper-functions": "^2.4.1"
}
}