-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
87 lines (87 loc) · 2.54 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
{
"name": "@terrestris/shogun-util",
"version": "10.2.0",
"keywords": [],
"bugs": {
"url": "https://github.com/terrestris/shogun-util/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/terrestris/shogun-util.git"
},
"license": "BSD-2-Clause",
"author": "terrestris GmbH & Co. KG <[email protected]>",
"contributors": [
{
"name": "Daniel Koch",
"email": "[email protected]",
"url": "https://github.com/dnlkoch"
}
],
"files": [
"dist"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"build:docs": "typedoc ./src/**/*",
"check": "npm run typecheck && npm run lint && npm test",
"clean:dist": "rimraf ./dist/* ./coverage/*",
"lint": "npm run clean:dist && eslint -c eslint.config.mjs",
"lint:fix": "npm run lint -- --fix",
"prepare": "husky",
"pretest": "npm run clean:dist && npm run typecheck && npm run lint",
"test": "jest --coverage --maxWorkers=50%",
"typecheck": "tsc --noEmit --project tsconfig.json",
"watch:buildto": "node watchBuild.js"
},
"dependencies": {
"@terrestris/base-util": "^3.0.0",
"geojson": "^0.5.0",
"keycloak-js": "^26.0.6",
"lodash": "^4.17.21"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.15.0",
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.1",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.1",
"@stylistic/eslint-plugin": "^2.11.0",
"@terrestris/eslint-config-typescript": "^7.0.0",
"@terrestris/ol-util": "^21.0.0",
"@types/geojson": "^7946.0.14",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.13",
"chokidar": "^4.0.1",
"eslint": "^9.15.0",
"eslint-plugin-import": "^2.31.0",
"globals": "^15.12.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"ol": "^10.2.1",
"openapi-types": "^12.1.3",
"rimraf": "^6.0.0",
"semantic-release": "^24.2.0",
"typedoc": "^0.27.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.16.0"
},
"peerDependencies": {
"@terrestris/ol-util": ">=20",
"ol": ">=10"
},
"engines": {
"node": ">=20",
"npm": ">=10"
}
}