-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
52 lines (52 loc) · 1.39 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
{
"name": "@xeokit/xeokit-ifc-to-xkt",
"version": "0.1.0-alpha.1",
"description": "An Experimental WASM-Based IFC Importer for xeokit",
"main": "ifc2xkt.js",
"preferGlobal": true,
"bin": {
"ifc2xkt": "./ifc2xkt.js"
},
"scripts": {
"build-tests": "rollup -c",
"test": "percy exec -- node snapshots.js",
"publish": "npm publish --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xeokit/xeokit-ifc-to-xkt.git"
},
"keywords": [
"xeokit",
"bim",
"ifc",
"xkt",
"webgl",
"3d",
"wasm"
],
"author": "xeolabs",
"license": "AGPL3",
"bugs": {
"url": "https://github.com/xeokit/xeokit-ifc-to-xkt/issues"
},
"homepage": "https://github.com/xeokit/xeokit-ifc-to-xkt#readme",
"files": [
"./src/convertIFCDataToXKT.js",
"./src/convertIFCFileToXKT.js",
"./src/convertIFCIntoXKTModel.js"
],
"dependencies": {
"@xeokit/xeokit-xkt-utils": "1.2.0",
"commander": "^2.20.0",
"web-ifc": "0.0.17"
},
"devDependencies": {
"@percy/script": "^1.1.0",
"http-server": "^0.12.3",
"@xeokit/xeokit-sdk": "1.9.0-alpha.6",
"rollup": "^1.32.1",
"rollup-plugin-minify-es": "^1.1.1",
"rollup-plugin-node-resolve": "^5.2.0"
}
}