@masterportal/masterportalapi 2.31.0 → 2.32.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,18 @@
3
3
 
4
4
  The [Semantic Versioning](https://semver.org/spec/v2.0.0.html) is used.
5
5
 
6
+ ### 2.32.0 - 2024-01-17
7
+ ### Added
8
+
9
+ ### Changed
10
+ - The following package has been updated:
11
+ - dependencies:
12
+ - ol: 8.1.0 to 8.2.0
13
+ - peerDependencies:
14
+ - @cesium/engine 2.4.1 to 6.2.0
15
+
16
+ ---
17
+
6
18
  ### 2.31.0 - 2023-12-13
7
19
  ## Added
8
20
  - Added support for Node LTS version ^20.9.0 and npm Version ^10.1.0.
package/jest.config.js CHANGED
@@ -6,7 +6,7 @@ module.exports = {
6
6
  /** ol prints errors without HTMLCanvasElement being available in test environment */
7
7
  "setupFiles": ["jest-canvas-mock"],
8
8
  /** node_modules are usually ignored by babel-jest, but ol is published in ES6 */
9
- "transformIgnorePatterns": ["/node_modules/(?!(ol|olcs|ol-mapbox-style|geotiff|quick-lru)/).*/"],
9
+ "transformIgnorePatterns": ["/node_modules/(?!(ol|olcs|ol-mapbox-style|geotiff|quick-lru|color-space|color-rgba|color-parse)/).*/"],
10
10
  /** only consider files in src/ for coverage */
11
11
  "collectCoverageFrom": ["src/**/*.js"],
12
12
  /** coverage reporters */
package/package.json CHANGED
@@ -1,73 +1,73 @@
1
- {
2
- "name": "@masterportal/masterportalapi",
3
- "author": "Implementierungspartnerschaft Masterportal <info@masterportal.org> (https://www.masterportal.org)",
4
- "version": "2.31.0",
5
- "license": "MIT",
6
- "description": "Basic functions of the Masterportal as api",
7
- "repository": {
8
- "type": "git",
9
- "url": "git+https://bitbucket.org/geowerkstatt-hamburg/masterportalapi.git"
10
- },
11
- "main": "src/index.js",
12
- "scripts": {
13
- "test": "jest .test.js --config ./jest.config.js --collectCoverage",
14
- "test:trace": "node --trace-warnings node_modules/jest/bin/jest.js .test.js --config ./jest.config.js",
15
- "test:watch": "jest .test.js --config ./jest.config.js --watch",
16
- "example": "parcel example/index.html",
17
- "generate-jsdoc": "jsdoc ./src -r -d ./docs/ -R ./README.md -c jsdoc.json",
18
- "prePushHook": "eslint --max-warnings 0 \"./**/*.js\" && npm run test",
19
- "prepare": "husky install"
20
- },
21
- "dependencies": {
22
- "core-js": "^3.33.1",
23
- "dayjs": "^1.11.10",
24
- "ol": "8.1.0",
25
- "ol-mapbox-style": "12.0.0",
26
- "olcs": "2.16.0",
27
- "proj4": "^2.9.1",
28
- "xml2js": "^0.6.2"
29
- },
30
- "devDependencies": {
31
- "@babel/core": "^7.23.2",
32
- "@babel/plugin-transform-modules-commonjs": "^7.23.0",
33
- "@parcel/transformer-sass": "^2.10.0",
34
- "@swc/jest": "^0.2.29",
35
- "assert": "^2.1.0",
36
- "browserify-zlib": "^0.2.0",
37
- "buffer": "^6.0.3",
38
- "canvas": "^2.11.2",
39
- "eslint": "^8.52.0",
40
- "events": "^3.3.0",
41
- "https-browserify": "^1.0.0",
42
- "husky": "^8.0.3",
43
- "jest": "^29.7.0",
44
- "jest-canvas-mock": "^2.5.2",
45
- "jest-environment-jsdom": "^29.7.0",
46
- "jest-fetch-mock": "^3.0.3",
47
- "jsdoc": "^4.0.2",
48
- "parcel": "^2.10.0",
49
- "process": "^0.11.10",
50
- "sass": "^1.69.4",
51
- "stream-browserify": "^3.0.0",
52
- "stream-http": "^3.2.0",
53
- "timers-browserify": "^2.0.12",
54
- "url": "^0.11.3",
55
- "use-resize-observer": "^9.1.0",
56
- "util": "^0.12.5"
57
- },
58
- "peerDependencies": {
59
- "@cesium/engine": "^2.4.1"
60
- },
61
- "engines": {
62
- "node": "^16.13.2 || ^18.12.0 || ^20.9.0",
63
- "npm": "^8.1.2 || ^9.3.1 || ^10.1.0"
64
- },
65
- "homepage": "https://bitbucket.org/geowerkstatt-hamburg/masterportalapi#readme",
66
- "directories": {
67
- "example": "example",
68
- "test": "test"
69
- },
70
- "bugs": {
71
- "url": "https://bitbucket.org/geowerkstatt-hamburg/masterportalapi/issues"
72
- }
73
- }
1
+ {
2
+ "name": "@masterportal/masterportalapi",
3
+ "author": "Implementierungspartnerschaft Masterportal <info@masterportal.org> (https://www.masterportal.org)",
4
+ "version": "2.32.0",
5
+ "license": "MIT",
6
+ "description": "Basic functions of the Masterportal as api",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://bitbucket.org/geowerkstatt-hamburg/masterportalapi.git"
10
+ },
11
+ "main": "src/index.js",
12
+ "scripts": {
13
+ "test": "jest .test.js --config ./jest.config.js --collectCoverage",
14
+ "test:trace": "node --trace-warnings node_modules/jest/bin/jest.js .test.js --config ./jest.config.js",
15
+ "test:watch": "jest .test.js --config ./jest.config.js --watch",
16
+ "example": "parcel example/index.html",
17
+ "generate-jsdoc": "jsdoc ./src -r -d ./docs/ -R ./README.md -c jsdoc.json",
18
+ "prePushHook": "eslint --max-warnings 0 \"./**/*.js\" && npm run test",
19
+ "prepare": "husky install"
20
+ },
21
+ "dependencies": {
22
+ "core-js": "^3.33.1",
23
+ "dayjs": "^1.11.10",
24
+ "ol": "8.2.0",
25
+ "ol-mapbox-style": "12.0.0",
26
+ "olcs": "2.16.0",
27
+ "proj4": "^2.9.1",
28
+ "xml2js": "^0.6.2"
29
+ },
30
+ "devDependencies": {
31
+ "@babel/core": "^7.23.2",
32
+ "@babel/plugin-transform-modules-commonjs": "^7.23.0",
33
+ "@parcel/transformer-sass": "^2.10.0",
34
+ "@swc/jest": "^0.2.29",
35
+ "assert": "^2.1.0",
36
+ "browserify-zlib": "^0.2.0",
37
+ "buffer": "^6.0.3",
38
+ "canvas": "^2.11.2",
39
+ "eslint": "^8.52.0",
40
+ "events": "^3.3.0",
41
+ "https-browserify": "^1.0.0",
42
+ "husky": "^8.0.3",
43
+ "jest": "^29.7.0",
44
+ "jest-canvas-mock": "^2.5.2",
45
+ "jest-environment-jsdom": "^29.7.0",
46
+ "jest-fetch-mock": "^3.0.3",
47
+ "jsdoc": "^4.0.2",
48
+ "parcel": "^2.10.0",
49
+ "process": "^0.11.10",
50
+ "sass": "^1.69.4",
51
+ "stream-browserify": "^3.0.0",
52
+ "stream-http": "^3.2.0",
53
+ "timers-browserify": "^2.0.12",
54
+ "url": "^0.11.3",
55
+ "use-resize-observer": "^9.1.0",
56
+ "util": "^0.12.5"
57
+ },
58
+ "peerDependencies": {
59
+ "@cesium/engine": "^6.2.0"
60
+ },
61
+ "engines": {
62
+ "node": "^16.13.2 || ^18.12.0 || ^20.9.0",
63
+ "npm": "^8.1.2 || ^9.3.1 || ^10.1.0"
64
+ },
65
+ "homepage": "https://bitbucket.org/geowerkstatt-hamburg/masterportalapi#readme",
66
+ "directories": {
67
+ "example": "example",
68
+ "test": "test"
69
+ },
70
+ "bugs": {
71
+ "url": "https://bitbucket.org/geowerkstatt-hamburg/masterportalapi/issues"
72
+ }
73
+ }