forked from xeokit/xeokit-convert
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.43 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
{
"name": "@xeokit/xeokit-convert",
"version": "1.0.2",
"description": "JavaScript utilities to create .XKT files",
"main": "index.js",
"bin": "/convert2xkt.js",
"directories": {},
"scripts": {
"build-tests": "rollup --config rollup.config.tests.js",
"build": "rollup --config rollup.config.pako.js; rollup --config rollup.config.dist.js; rollup --config rollup.config.convert2xkt.js; rollup --config rollup.config.tests.js",
"test": "node ./perfTests/perfTests.js; percy exec -- node ./visualTests/visualTests.js",
"perf-tests": "rollup --config rollup.config.pako.js; rollup --config rollup.config.dist.js; rollup --config rollup.config.convert2xkt.js; rollup --config rollup.config.tests.js; node ./perfTests/perfTests.js",
"visual-tests": "percy exec -- node ./visualTests/visualTests.js",
"docs": "rm -Rf ./docs/*; ./node_modules/.bin/esdoc",
"publish": "npm publish --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xeokit/xeokit-convert.git"
},
"keywords": [
"xeolabs",
"xeokit",
"bim",
"opensource",
"ifc",
"webgl",
"xkt",
"gltf",
"cityjson",
"laz",
"gis"
],
"author": "Lindsay Kay",
"license": "LICENSE",
"bugs": {
"url": "https://github.com/xeokit/xeokit-convert/issues"
},
"homepage": "https://github.com/xeokit/xeokit-convert#readme",
"dependencies": {
"@loaders.gl/core": "^3.0.13",
"@loaders.gl/json": "^3.0.13",
"@loaders.gl/las": "^3.0.13",
"@loaders.gl/obj": "^3.0.13",
"@loaders.gl/ply": "^3.0.13",
"@loaders.gl/polyfills": "^3.0.13",
"@zip.js/zip.js": "^2.2.38",
"earcut": "^2.2.2",
"fs": "0.0.1-security",
"jszip": "^3.6.0",
"jszip-sync": "^3.2.1-sync",
"path": "^0.12.7",
"request": "^2.79.0",
"web-ifc": "^0.0.32",
"xmldom": "^0.6.0"
},
"devDependencies": {
"@percy/script": "^1.1.0",
"@rollup/plugin-commonjs": "^15.1.0",
"@xeokit/xeokit-sdk": "2.2.1",
"autoprefixer": "^9.8.5",
"esdoc": "^1.1.0",
"esdoc-node": "^1.0.5",
"esdoc-standard-plugin": "^1.0.0",
"http-server": "^0.12.3",
"puppeteer": "^10.4.0",
"puppeteer-firefox": "^0.5.1",
"rimraf": "^3.0.2",
"rollup": "^2.46.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-minify-es": "^1.1.1",
"rollup-plugin-node-resolve": "^5.2.0"
},
"files": [
"/dist",
"/convert2xkt.js"
]
}