-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
106 lines (106 loc) · 3.2 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@terrestris/ol-util",
"version": "21.0.0",
"description": "A set of helper classes for working with openLayers",
"keywords": [
"openlayers",
"mapping",
"geo",
"ol"
],
"homepage": "https://github.com/terrestris/ol-util#readme",
"bugs": {
"url": "https://github.com/terrestris/ol-util/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/terrestris/ol-util.git"
},
"license": "BSD-2-Clause",
"author": "terrestris GmbH & Co. KG <[email protected]>",
"main": "dist/index.js",
"module": "src/index.ts",
"type": "module",
"browser": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"src",
"dist",
"babel.config.js"
],
"scripts": {
"build": "npm run build:dist",
"build:dist": "rimraf ./dist/* && tsc -p tsconfig.json",
"build:docs": "rimraf build/docs && typedoc ./src/**/*",
"check": "npm run lint && npm run typecheck && npm run test",
"deploy": "NODE_DEBUG=gh-pages node tasks/update-gh-pages.js",
"lint": "eslint -c eslint.config.mjs src/**",
"lint:fix": "eslint -c eslint.config.mjs src/** --fix",
"prepare": "husky",
"test": "jest --maxWorkers=4 --coverage -c jest.config.mjs",
"test:watch": "jest --watchAll -c jest.config.mjs",
"typecheck": "tsc --noEmit -p tsconfig.json",
"watch:buildto": "node watchBuild.js"
},
"dependencies": {
"@mapbox/node-pre-gyp": "^1.0.11",
"@terrestris/base-util": "^3.0.0",
"@turf/turf": "^7.1.0",
"fast-xml-parser": "^4.4.0",
"geostyler-openlayers-parser": "^5.0.0",
"lodash": "^4.17.21",
"polygon-splitter": "^0.0.11",
"proj4": "^2.11.0",
"shpjs": "^6.1.0"
},
"devDependencies": {
"@babel/core": "^7.24.5",
"@babel/preset-env": "^7.24.5",
"@babel/preset-typescript": "^7.24.1",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.13.0",
"@mapbox/shp-write": "^0.4.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.0",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.0",
"@stylistic/eslint-plugin": "^2.9.0",
"@terrestris/eslint-config-typescript": "^7.0.0",
"@types/geojson": "^7946.0.14",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.7",
"@types/proj4": "^2.5.5",
"@types/shpjs": "^3.4.7",
"@types/url-parse": "^1.4.11",
"@typescript-eslint/eslint-plugin": "^8.10.0",
"@typescript-eslint/parser": "^8.10.0",
"eslint": "^9.13.0",
"eslint-plugin-import": "^2.31.0",
"fs-extra": "11.3.0",
"gh-pages": "^6.1.1",
"globals": "^15.11.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-canvas-mock": "^2.5.2",
"jest-environment-jsdom": "^29.7.0",
"ol": "^10.1.0",
"rimraf": "^6.0.0",
"semantic-release": "^24.0.0",
"typedoc": "^0.27.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.10.0",
"watch": "1.0.2",
"whatwg-fetch": "^3.6.20"
},
"peerDependencies": {
"ol": ">=10"
},
"engines": {
"node": ">=20",
"npm": ">=9"
}
}