-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 949 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
38
39
40
41
{
"name": "itm-to-wgs84-converter",
"version": "1.0.5",
"description": "A Zero dependency ITM to WGS84 coordinates converter",
"author": "Arik W",
"license": "SEE LICENSE IN LICENSE.md",
"scripts": {
"test": "mocha"
},
"devDependencies": {
"chai": "^4.3.6",
"mocha": "^10.0.0"
},
"main": "./dist/itm-to-wgs84-converter.cjs",
"exports": {
".": {
"import": "./dist/itm-to-wgs84-converter.mjs",
"require": "./dist/itm-to-wgs84-converter.cjs",
"default": "./src/itm-to-wgs84-converter.js"
}
},
"files": [
"/src",
"/dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/arikw/itm-to-wgs84-converter.git"
},
"bugs": {
"url": "https://github.com/arikw/itm-to-wgs84-converter/issues"
},
"homepage": "https://github.com/arikw/itm-to-wgs84-converter#readme",
"keywords": [
"israel",
"itm",
"ics",
"wgs84",
"converter"
]
}