forked from derhuerst/transform-coordinates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 783 Bytes
/
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
{
"name": "transform-coordinates",
"description": "Transform coordinates from one coordinate system to another.",
"version": "1.0.0",
"main": "index.js",
"files": [
"index.js",
"example.js"
],
"keywords": [
"epsg",
"gis",
"geospatial",
"transform",
"coordinates",
"proj4"
],
"author": "Jannis R <[email protected]>",
"homepage": "https://github.com/derhuerst/transform-coordinates",
"repository": "derhuerst/transform-coordinates",
"bugs": "https://github.com/derhuerst/transform-coordinates/issues",
"license": "ISC",
"engines": {
"node": ">=12"
},
"dependencies": {
"epsg-index": "^1.0.0",
"proj4": "^2.4.4"
},
"devDependencies": {
"is-roughly-equal": "^0.1.0"
},
"scripts": {
"test": "node test.js",
"prepublishOnly": "npm test"
}
}