-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.14 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
{
"name": "bbox-helper-functions",
"version": "3.3.0",
"description": "Helper functions to convert BBoxes to multiple formats",
"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"
],
"author": "Alberto Rico",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/alrico88/bbox-helper-functions"
},
"sideEffects": false,
"devDependencies": {
"@types/dlv": "^1.1.2",
"@types/geojson": "^7946.0.7",
"@types/ngeohash": "^0.6.4",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"c8": "^7.11.0",
"coveralls": "^3.1.1",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^14.0.2",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"geohash-to-geojson": "^4.2.1",
"husky": "^7.0.4",
"tslib": "^2.3.1",
"tsup": "^5.12.0",
"typedoc": "^0.20.37",
"typedoc-plugin-markdown": "^3.11.14",
"typescript": "^4.6.2",
"vite": "^2.8.6",
"vitest": "^0.6.0"
},
"keywords": [
"bbox",
"bounding box",
"polygon",
"SQL",
"GeoJSON",
"wkt"
],
"dependencies": {
"@sindresorhus/is": "^4.6.0",
"@turf/bbox": "^6.5.0",
"dlv": "^1.1.3",
"ngeohash": "^0.6.3",
"string-object-formatter": "^2.0.0",
"wkt-parser-helper": "^4.0.1"
},
"scripts": {
"dev": "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",
"docs": "typedoc src/index.ts --readme README.md --gitRevision master",
"prepublish": "pnpm run build",
"coveralls": "vitest run --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"husky": {
"hooks": {
"pre-commit": "pnpm run lint"
}
}
}