-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.31 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.31 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "leaflet.geodesic",
"version": "2.7.2",
"description": "Add-on to draw geodesic lines with leaflet",
"main": "dist/leaflet.geodesic.js",
"module": "dist/leaflet.geodesic.esm.js",
"browser": "dist/leaflet.geodesic.umd.min.js",
"types": "dist/leaflet.geodesic.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/henrythasler/Leaflet.Geodesic.git"
},
"keywords": [
"leaflet",
"geodesic",
"arc"
],
"author": "Henry Thasler",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/henrythasler/Leaflet.Geodesic/issues"
},
"homepage": "https://github.com/henrythasler/Leaflet.Geodesic#readme",
"directories": {
"example": "./docs",
"test": "./spec"
},
"peerDependencies": {
"leaflet": "^1.9.4"
},
"devDependencies": {
"@eslint/js": "^9.33.0",
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.4",
"@types/benchmark": "^2.1.5",
"@types/geojson": "^7946.0.16",
"@types/jest": "^30.0.0",
"@types/leaflet": "^1.9.20",
"@types/node": "^24.3.0",
"benchmark": "^2.1.4",
"coveralls": "^3.1.1",
"eslint": "^9.33.0",
"jest": "^30.0.5",
"jest-environment-jsdom": "^30.0.5",
"jest-extended": "^6.0.0",
"leaflet": "^1.9.4",
"prettier": "^3.6.2",
"rollup": "^4.46.3",
"rollup-plugin-dts": "^6.2.3",
"rollup-plugin-visualizer": "^6.0.3",
"ts-jest": "^29.4.1",
"tslib": "^2.8.1",
"typedoc": "^0.28.10",
"typescript": "^5.9.2",
"typescript-eslint": "^8.40.0"
},
"scripts": {
"test": "jest \"^(?!.*benchmark).*$\" --coverage --",
"test:solo": "jest --coverage --",
"benchmark": "jest benchmark",
"linter": "eslint src/**/*.ts",
"prettier": "prettier --config .prettierrc 'src/**/*.ts' --write",
"docs": "typedoc",
"build:tools": "tsc tools/prebuild.ts && tsc tools/postbuild.ts",
"prebuild": "node tools/prebuild.js",
"build": "rollup --config rollup.config.prod.ts --configPlugin typescript",
"build:dev": "npm run prebuild && rollup --config rollup.config.dev.ts --configPlugin typescript && npm run postbuild",
"postbuild": "node tools/postbuild.js"
},
"np": {
"publish": false
}
}