bimplus-websdk 1.0.6 → 1.0.8
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/eslint.config.mjs +35 -0
- package/package.json +13 -6
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import globals from "globals";
|
|
2
|
+
import js from "@eslint/js";
|
|
3
|
+
|
|
4
|
+
export default [
|
|
5
|
+
js.configs.recommended,
|
|
6
|
+
// File-pattern specific overrides
|
|
7
|
+
{
|
|
8
|
+
files: ["src/**/*", "test/**/*"],
|
|
9
|
+
rules: {
|
|
10
|
+
semi: ["warn", "always"] // check for missing semicolons at line ends
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
languageOptions: {
|
|
15
|
+
ecmaVersion: 2022,
|
|
16
|
+
sourceType: "module",
|
|
17
|
+
globals: {
|
|
18
|
+
...globals.browser,
|
|
19
|
+
$: true,
|
|
20
|
+
QUnit: true,
|
|
21
|
+
// Uint8Array: true,
|
|
22
|
+
// DataView : true,
|
|
23
|
+
// Promise: true,
|
|
24
|
+
// ArrayBuffer: true,
|
|
25
|
+
// needed for webpack files
|
|
26
|
+
define: true,
|
|
27
|
+
require: true,
|
|
28
|
+
module: true,
|
|
29
|
+
__dirname: true,
|
|
30
|
+
},
|
|
31
|
+
},
|
|
32
|
+
plugins: {},
|
|
33
|
+
rules: {},
|
|
34
|
+
},
|
|
35
|
+
];
|
package/package.json
CHANGED
|
@@ -1,7 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bimplus-websdk",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.8",
|
|
4
4
|
"description": "bim+ websdk",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"Allplan",
|
|
7
|
+
"Bimplus",
|
|
8
|
+
"library",
|
|
9
|
+
"javascript"
|
|
10
|
+
],
|
|
5
11
|
"main": "dist/bimplus-websdk.js",
|
|
6
12
|
"license": "MIT",
|
|
7
13
|
"repository": {
|
|
@@ -29,15 +35,16 @@
|
|
|
29
35
|
"test-watch": "npm run test -- --browsers=Chrome --single-run=false --auto-watch"
|
|
30
36
|
},
|
|
31
37
|
"devDependencies": {
|
|
32
|
-
"@babel/core": "^7.24.
|
|
38
|
+
"@babel/core": "^7.24.5",
|
|
33
39
|
"@babel/plugin-transform-runtime": "^7.24.3",
|
|
34
|
-
"@babel/preset-env": "^7.24.
|
|
35
|
-
"@babel/runtime": "^7.24.
|
|
40
|
+
"@babel/preset-env": "^7.24.5",
|
|
41
|
+
"@babel/runtime": "^7.24.5",
|
|
36
42
|
"babel-loader": "^9.1.3",
|
|
37
43
|
"clean-webpack-plugin": "^4.0.0",
|
|
38
44
|
"coverage-istanbul-loader": "^3.0.5",
|
|
39
45
|
"documentation": "^14.0.3",
|
|
40
|
-
"eslint": "^
|
|
46
|
+
"eslint": "^9.3.0",
|
|
47
|
+
"globals": "15.3.0",
|
|
41
48
|
"host-environment": "^2.1.2",
|
|
42
49
|
"karma": "^6.4.3",
|
|
43
50
|
"karma-chrome-launcher": "^3.2.0",
|
|
@@ -46,7 +53,7 @@
|
|
|
46
53
|
"karma-host-environment": "^3.0.3",
|
|
47
54
|
"karma-jquery": "^0.2.4",
|
|
48
55
|
"karma-qunit": "^4.2.0",
|
|
49
|
-
"karma-webpack": "^5.0.
|
|
56
|
+
"karma-webpack": "^5.0.1",
|
|
50
57
|
"qunit": "^2.20.1",
|
|
51
58
|
"terser-webpack-plugin": "^5.3.10",
|
|
52
59
|
"webpack": "^5.91.0",
|