forked from terrestris/ol-util
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 3.01 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
{
"name": "@terrestris/ol-util",
"version": "14.0.0",
"description": "A set of helper classes for working with openLayers",
"module": "src/index.ts",
"main": "dist/index.js",
"browser": "dist/index.js",
"files": [
"src",
"dist",
"babel.config.js"
],
"engines": {
"node": ">=18",
"npm": ">=9"
},
"scripts": {
"build": "npm run test && npm run build:dist",
"build:docs": "npm run clean:docs && typedoc ./src/**/*",
"build:dist": "npm run clean:dist && tsc -p tsconfig.json",
"clean:dist": "rimraf ./dist/*",
"clean:docs": "rimraf build/docs",
"coveralls": "cat coverage/lcov.info | coveralls",
"deploy": "NODE_DEBUG=gh-pages node tasks/update-gh-pages.js",
"lint": "eslint -c .eslintrc --ext .ts src/",
"lint:fix": "eslint -c .eslintrc --ext .ts src/ --fix",
"prepare": "husky install",
"pretest": "npm run typecheck && npm run lint",
"test": "jest --maxWorkers=4 --coverage",
"test:watch": "jest --watchAll",
"typecheck": "tsc --noEmit -p tsconfig.json",
"watch:buildto": "node watchBuild.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/terrestris/ol-util.git"
},
"keywords": [
"openlayers",
"mapping",
"geo",
"ol"
],
"author": "terrestris GmbH & Co. KG <info@terrestris.de>",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/terrestris/ol-util/issues"
},
"homepage": "https://github.com/terrestris/ol-util#readme",
"dependencies": {
"@mapbox/node-pre-gyp": "^1.0.11",
"@terrestris/base-util": "^1.0.1",
"@turf/turf": "^6.5.0",
"fast-xml-parser": "^4.2.7",
"geostyler-openlayers-parser": "^4.2.1",
"lodash": "^4.17.21",
"polygon-splitter": "^0.0.11",
"proj4": "^2.9.0",
"shpjs": "^4.0.4",
"typescript": "^5.2.2"
},
"devDependencies": {
"@babel/core": "^7.22.11",
"@babel/preset-env": "^7.22.14",
"@babel/preset-typescript": "^7.22.11",
"@commitlint/cli": "^18.0.0",
"@commitlint/config-conventional": "^18.0.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^11.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.0.4",
"@semantic-release/npm": "^11.0.0",
"@semantic-release/release-notes-generator": "^12.0.0",
"@terrestris/eslint-config-typescript": "4.0.0",
"@types/geojson": "^7946.0.10",
"@types/jest": "^29.5.4",
"@types/proj4": "^2.5.2",
"@types/shpjs": "^3.4.2",
"@typescript-eslint/eslint-plugin": "6.10.0",
"coveralls": "^3.1.1",
"eslint": "^8.48.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"fs-extra": "11.1.1",
"gh-pages": "^6.0.0",
"husky": "^8.0.3",
"jest": "^29.6.4",
"jest-canvas-mock": "^2.5.2",
"jest-environment-jsdom": "^29.6.4",
"ol": "^8.0.0",
"rimraf": "^5.0.1",
"semantic-release": "^22.0.5",
"shp-write": "^0.3.2",
"typedoc": "^0.25.0",
"watch": "1.0.2",
"whatwg-fetch": "^3.6.18"
},
"peerDependencies": {
"ol": "^8"
}
}