bimplus-renderer 1.5.12 → 1.5.13

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/package.json CHANGED
@@ -1,95 +1,95 @@
1
- {
2
- "name": "bimplus-renderer",
3
- "version": "1.5.12",
4
- "description": "bim+ renderer",
5
- "main": "dist/bimplus-renderer.js",
6
- "license": "MIT",
7
- "repository": {
8
- "type": "git",
9
- "url": "."
10
- },
11
- "scripts": {
12
- "eslint": "eslint src/** test/**",
13
- "build": "npm run build-worker-dev && npm run eslint && webpack --config webpack.dev.js",
14
- "build-prod": "npm run build-worker-prod && npm run eslint && webpack --config webpack.prod.js",
15
- "build-worker-dev": "npm run cleanup-compiled-worker && npm run build-wasm && webpack --config webpack.compile.worker.js && npm run copy-compiled-worker",
16
- "build-worker-prod": "npm run cleanup-compiled-worker && npm run build-wasm-prod && webpack --config webpack.compile.worker.js && npm run copy-compiled-worker",
17
- "yarn-publish": "npm run build-prod && yarn publish",
18
- "yarn-publish-rc": "npm run build-prod && yarn publish --tag rc",
19
- "yarn-publish-branch": "npm run build-prod && yarn publish --tag",
20
- "npm-pack": "npm run build-prod && npm pack",
21
- "lint-doc": "documentation lint ./src/*.js ./src/*/*.js --shallow ",
22
- "build-doc": "yarn lint-doc && documentation build ./src/*.js ./src/*/*.js -f html --shallow --sort-order alpha -o ./documentation --config doc_config.yml",
23
- "build-docMd": "yarn lint-doc && documentation build ./src/*.js ./src/*/*.js -f md --shallow --sort-order alpha -o ./documentation/Bimplus_Renderer_doc.md",
24
- "build-docConf": "yarn build-docMd && cd ./documentation && python convert_to_confluence_md.py",
25
- "build-docAll": "yarn build-doc && yarn build-docConf",
26
- "test": "npm-run-all -p -r test-polly-listen-task test-karma-task",
27
- "test-watch": "npm-run-all -p -r test-polly-listen-task test-watch--browser-task",
28
- "test-chrome": "npm-run-all -p -r test-polly-listen-task test-chrome-browser-task",
29
- "test-chrome-headless": "npm-run-all -p -r test-polly-listen-task test-chrome-headlss-task",
30
- "test-firefox": "npm-run-all -p -r test-polly-listen-task test-firefx-browser-task",
31
- "// TEST HELPERS ": "The next scripts are helpers for the test scripts which are needed because of usage of npm-run-all",
32
- "// npm run test ": "runs all test in different browsers as specified in karma.conf.js",
33
- "// npm run test-watch": "npm run test-watch runs all tests in one browser for debugging",
34
- "// firefox headless ": "cant be used because webgl is not defined",
35
- "// heap error ": "FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - process out of memory: increase --max_old_space_size=4096",
36
- "test-polly-listen-task": "polly listen",
37
- "test-karma-task": "node --max_old_space_size=8192 node_modules/karma/bin/karma start ",
38
- "test-watch--browser-task": "npm run test-karma-task -- --single-run=false --browsers=ChromeExt --auto-watch",
39
- "test-chrome-browser-task": "npm run test-karma-task -- --single-run=true --browsers=ChromeExt",
40
- "test-chrome-headlss-task": "npm run test-karma-task -- --single-run=true --browsers=ChromeHeadless",
41
- "test-firefx-browser-task": "npm run test-karma-task -- --single-run=true --browsers=Firefox",
42
- "test-firefx-headlss-task": "npm run test-karma-task -- --single-run=true --browsers=FirefoxHeadless",
43
- "build-wasm": "emcc -O3 ./src/assembly/processPartitionVertices.cpp -s EXPORT_ES6=1 -s MODULARIZE=1 -s USE_ES6_IMPORT_META=0 -s ENVIRONMENT='worker' -s SINGLE_FILE=1 -s INITIAL_MEMORY=64MB -s ALLOW_MEMORY_GROWTH=1 -s EXTRA_EXPORTED_RUNTIME_METHODS=['ccall'] -s EXPORTED_FUNCTIONS=['_processVertices','_malloc','_free'] -o ./bin/processPartitionVertices.js",
44
- "build-wasm-prod": "emcc -O3 ./src/assembly/processPartitionVertices.cpp -s EXPORT_ES6=1 -s MODULARIZE=1 -s USE_ES6_IMPORT_META=0 -s ENVIRONMENT='worker' -s SINGLE_FILE=1 -s INITIAL_MEMORY=64MB -s ALLOW_MEMORY_GROWTH=1 -s EXTRA_EXPORTED_RUNTIME_METHODS=['ccall'] -s EXPORTED_FUNCTIONS=['_processVertices','_malloc','_free'] -o ./bin/processPartitionVertices.js",
45
- "code-metrics": "plato -r -d metrics src",
46
- "copy-compiled-worker": "cpx ./dist/partitionVerticesWorker.bimplus-renderer.worker.js ./src/compiledWorkers",
47
- "cleanup-compiled-worker": "rimraf ./src/compiledWorkers/partitionVerticesWorker.bimplus-renderer.worker.js"
48
- },
49
- "devDependencies": {
50
- "@babel/core": "^7.19.1",
51
- "@babel/plugin-transform-async-to-generator": "^7.18.6",
52
- "@babel/plugin-transform-runtime": "^7.19.1",
53
- "@babel/preset-env": "^7.19.1",
54
- "@pollyjs/adapter-xhr": "^6.0.5",
55
- "@pollyjs/cli": "^6.0.1",
56
- "@pollyjs/core": "^6.0.5",
57
- "@pollyjs/persister-rest": "^6.0.5",
58
- "babel-loader": "^8.2.5",
59
- "bimplus-websdk": "0.0.207",
60
- "clean-webpack-plugin": "^4.0.0",
61
- "cpx": "^1.5.0",
62
- "documentation": "^14.0.0",
63
- "eslint": "8.23.1",
64
- "file-loader": "6.2.0",
65
- "istanbul-instrumenter-loader": "^3.0.1",
66
- "karma": "^6.4.0",
67
- "karma-chrome-launcher": "^3.1.1",
68
- "karma-coverage-istanbul-reporter": "^3.0.2",
69
- "karma-firefox-launcher": "^2.1.2",
70
- "karma-host-environment": "^3.0.3",
71
- "karma-jquery": "^0.2.4",
72
- "karma-qunit": "^4.1.1",
73
- "karma-sharding": "^4.4.0",
74
- "karma-webpack": "^5.0.0",
75
- "npm-run-all": "4.1.5",
76
- "object-hash": "^3.0.0",
77
- "qunit": "^2.19.1",
78
- "raw-loader": "4.0.2",
79
- "rimraf": "^3.0.2",
80
- "shader-loader": "1.3.1",
81
- "terser-webpack-plugin": "^4.2.3",
82
- "threads-plugin": "1.4.0",
83
- "url-loader": "4.1.1",
84
- "webpack": "^4.46.0",
85
- "webpack-cli": "^4.10.0"
86
- },
87
- "dependencies": {
88
- "@babel/runtime": "^7.19.0",
89
- "async": "^3.2.4",
90
- "dexie": "3.2.2",
91
- "moment-timezone": "^0.5.37",
92
- "threads": "1.7.0",
93
- "three": "0.128.0"
94
- }
95
- }
1
+ {
2
+ "name": "bimplus-renderer",
3
+ "version": "1.5.13",
4
+ "description": "bim+ renderer",
5
+ "main": "dist/bimplus-renderer.js",
6
+ "license": "MIT",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "."
10
+ },
11
+ "scripts": {
12
+ "eslint": "eslint src/** test/**",
13
+ "build": "npm run build-worker-dev && npm run eslint && webpack --config webpack.dev.js",
14
+ "build-prod": "npm run build-worker-prod && npm run eslint && webpack --config webpack.prod.js",
15
+ "build-worker-dev": "npm run cleanup-compiled-worker && npm run build-wasm && webpack --config webpack.compile.worker.js && npm run copy-compiled-worker",
16
+ "build-worker-prod": "npm run cleanup-compiled-worker && npm run build-wasm-prod && webpack --config webpack.compile.worker.js && npm run copy-compiled-worker",
17
+ "yarn-publish": "npm run build-prod && yarn publish",
18
+ "yarn-publish-rc": "npm run build-prod && yarn publish --tag rc",
19
+ "yarn-publish-branch": "npm run build-prod && yarn publish --tag",
20
+ "npm-pack": "npm run build-prod && npm pack",
21
+ "lint-doc": "documentation lint ./src/*.js ./src/*/*.js --shallow ",
22
+ "build-doc": "yarn lint-doc && documentation build ./src/*.js ./src/*/*.js -f html --shallow --sort-order alpha -o ./documentation --config doc_config.yml",
23
+ "build-docMd": "yarn lint-doc && documentation build ./src/*.js ./src/*/*.js -f md --shallow --sort-order alpha -o ./documentation/Bimplus_Renderer_doc.md",
24
+ "build-docConf": "yarn build-docMd && cd ./documentation && python convert_to_confluence_md.py",
25
+ "build-docAll": "yarn build-doc && yarn build-docConf",
26
+ "test": "npm-run-all -p -r test-polly-listen-task test-karma-task",
27
+ "test-watch": "npm-run-all -p -r test-polly-listen-task test-watch--browser-task",
28
+ "test-chrome": "npm-run-all -p -r test-polly-listen-task test-chrome-browser-task",
29
+ "test-chrome-headless": "npm-run-all -p -r test-polly-listen-task test-chrome-headlss-task",
30
+ "test-firefox": "npm-run-all -p -r test-polly-listen-task test-firefx-browser-task",
31
+ "// TEST HELPERS ": "The next scripts are helpers for the test scripts which are needed because of usage of npm-run-all",
32
+ "// npm run test ": "runs all test in different browsers as specified in karma.conf.js",
33
+ "// npm run test-watch": "npm run test-watch runs all tests in one browser for debugging",
34
+ "// firefox headless ": "cant be used because webgl is not defined",
35
+ "// heap error ": "FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - process out of memory: increase --max_old_space_size=4096",
36
+ "test-polly-listen-task": "polly listen",
37
+ "test-karma-task": "node --max_old_space_size=8192 node_modules/karma/bin/karma start ",
38
+ "test-watch--browser-task": "npm run test-karma-task -- --single-run=false --browsers=ChromeExt --auto-watch",
39
+ "test-chrome-browser-task": "npm run test-karma-task -- --single-run=true --browsers=ChromeExt",
40
+ "test-chrome-headlss-task": "npm run test-karma-task -- --single-run=true --browsers=ChromeHeadless",
41
+ "test-firefx-browser-task": "npm run test-karma-task -- --single-run=true --browsers=Firefox",
42
+ "test-firefx-headlss-task": "npm run test-karma-task -- --single-run=true --browsers=FirefoxHeadless",
43
+ "build-wasm": "emcc -O3 ./src/assembly/processPartitionVertices.cpp -s EXPORT_ES6=1 -s MODULARIZE=1 -s USE_ES6_IMPORT_META=0 -s ENVIRONMENT='worker' -s SINGLE_FILE=1 -s INITIAL_MEMORY=64MB -s ALLOW_MEMORY_GROWTH=1 -s EXTRA_EXPORTED_RUNTIME_METHODS=['ccall'] -s EXPORTED_FUNCTIONS=['_processVertices','_malloc','_free'] -o ./bin/processPartitionVertices.js",
44
+ "build-wasm-prod": "emcc -O3 ./src/assembly/processPartitionVertices.cpp -s EXPORT_ES6=1 -s MODULARIZE=1 -s USE_ES6_IMPORT_META=0 -s ENVIRONMENT='worker' -s SINGLE_FILE=1 -s INITIAL_MEMORY=64MB -s ALLOW_MEMORY_GROWTH=1 -s EXTRA_EXPORTED_RUNTIME_METHODS=['ccall'] -s EXPORTED_FUNCTIONS=['_processVertices','_malloc','_free'] -o ./bin/processPartitionVertices.js",
45
+ "code-metrics": "plato -r -d metrics src",
46
+ "copy-compiled-worker": "cpx ./dist/partitionVerticesWorker.bimplus-renderer.worker.js ./src/compiledWorkers",
47
+ "cleanup-compiled-worker": "rimraf ./src/compiledWorkers/partitionVerticesWorker.bimplus-renderer.worker.js"
48
+ },
49
+ "devDependencies": {
50
+ "@babel/core": "^7.19.1",
51
+ "@babel/plugin-transform-async-to-generator": "^7.18.6",
52
+ "@babel/plugin-transform-runtime": "^7.19.1",
53
+ "@babel/preset-env": "^7.19.1",
54
+ "@pollyjs/adapter-xhr": "^6.0.5",
55
+ "@pollyjs/cli": "^6.0.1",
56
+ "@pollyjs/core": "^6.0.5",
57
+ "@pollyjs/persister-rest": "^6.0.5",
58
+ "babel-loader": "^8.2.5",
59
+ "bimplus-websdk": "0.0.207",
60
+ "clean-webpack-plugin": "^4.0.0",
61
+ "cpx": "^1.5.0",
62
+ "documentation": "^14.0.0",
63
+ "eslint": "8.23.1",
64
+ "file-loader": "6.2.0",
65
+ "istanbul-instrumenter-loader": "^3.0.1",
66
+ "karma": "^6.4.0",
67
+ "karma-chrome-launcher": "^3.1.1",
68
+ "karma-coverage-istanbul-reporter": "^3.0.2",
69
+ "karma-firefox-launcher": "^2.1.2",
70
+ "karma-host-environment": "^3.0.3",
71
+ "karma-jquery": "^0.2.4",
72
+ "karma-qunit": "^4.1.1",
73
+ "karma-sharding": "^4.4.0",
74
+ "karma-webpack": "^5.0.0",
75
+ "npm-run-all": "4.1.5",
76
+ "object-hash": "^3.0.0",
77
+ "qunit": "^2.19.1",
78
+ "raw-loader": "4.0.2",
79
+ "rimraf": "^3.0.2",
80
+ "shader-loader": "1.3.1",
81
+ "terser-webpack-plugin": "^4.2.3",
82
+ "threads-plugin": "1.4.0",
83
+ "url-loader": "4.1.1",
84
+ "webpack": "^4.46.0",
85
+ "webpack-cli": "^4.10.0"
86
+ },
87
+ "dependencies": {
88
+ "@babel/runtime": "^7.19.0",
89
+ "async": "^3.2.4",
90
+ "dexie": "3.2.2",
91
+ "moment-timezone": "^0.5.37",
92
+ "threads": "1.7.0",
93
+ "three": "0.128.0"
94
+ }
95
+ }