-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.68 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.68 KB
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
{
"name": "leaflet.utm",
"version": "1.0.0",
"description": "Converts LatLng to UTM WGS84 in Leaflet",
"main": "L.LatLng.UTM.js",
"types": "L.LatLng.UTM.d.ts",
"directories": {
"test": "test"
},
"license": "BSD-3-Clause",
"scripts": {
"debug": "http-server -c-1",
"lint:js": "eslint .",
"lint:ts": "eslint --config eslint.config-ts.mjs *.ts",
"lint": "pnpm lint:js && pnpm lint:ts",
"lint:fix": "pnpm lint:js -- --fix",
"spec:js:v1": "mocha -r jsdom-global/register test/v1/spec.js",
"spec:js": "mocha -r jsdom-global/register test/spec.js",
"spec:ts": "tsc",
"spec:v1": "pnpm spec:js:v1 && pnpm spec:ts",
"spec": "pnpm spec:js && pnpm spec:ts",
"test:v1": "pnpm lint && pnpm spec:v1",
"test": "pnpm lint && pnpm spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jjimenezshaw/Leaflet.UTM.git"
},
"keywords": [
"Leaflet",
"map",
"geo",
"UTM"
],
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/leaflet": "^1.9.21",
"@typescript-eslint/eslint-plugin": "^8.46.3",
"@typescript-eslint/parser": "^8.46.3",
"chai": "^4.5.0",
"eslint": "^9.39.1",
"eslint-plugin-html": "^8.1.3",
"globals": "^16.5.0",
"http-server": "^14.1.1",
"jsdom": "27.1.0",
"jsdom-global": "3.0.2",
"leaflet": "^2.0.0-alpha.1",
"mocha": "^11.7.5",
"proj4": "^2.19.10",
"rollup-plugin-delete": "^3.0.1",
"rollup-plugin-git-version": "^0.3.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.3"
},
"peerDependencies": {
"leaflet": ">=0.7.0"
},
"author": "Javier Jimenez Shaw",
"readmeFilename": "README.md"
}