-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
49 lines (49 loc) · 1.51 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
{
"name": "@bldrs-ai/ifctool-root",
"private": true,
"homepage": "https://github.com/bldrs-ai/ifctool",
"repository": {
"type": "git",
"url": "git+https://github.com/bldrs-ai/ifctool.git"
},
"bugs": {
"url": "https://github.com/bldrs-ai/ifctool/issues"
},
"keywords": [
"ifc",
"ifcJSON",
"csv",
"cli"
],
"description": "Command line tool for working with IFC models. It extracts IFC elements by ID or types, and exports as JSON or CSV (via [json2csv](https://www.npmjs.com/package/json2csv)).",
"author": "[email protected]",
"license": "MIT",
"workspaces": [
"tool",
"lib"
],
"scripts": {
"build-dist": "node config/esbuild.js",
"build-docs": "rm -rf docs && yarn copy-wasm && mkdir docs && cp -r web/* docs",
"build-web": "shx cp -r dist/{ifclib,web-ifc}.* docs",
"build": "yarn build-dist && yarn build-docs && yarn build-web",
"lint": "yarn eslint tool lib",
"test": "cd lib ; yarn test ; cd ../tool ; yarn test",
"copy-wasm": "cp node_modules/web-ifc/*.wasm dist",
"precommit": "yarn lint && yarn test",
"prepare": "husky install"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/eslint-parser": "^7.17.0",
"@babel/plugin-syntax-import-assertions": "^7.16.7",
"@babel/preset-env": "^7.18.6",
"esbuild": "^0.14.22",
"eslint": "^8.29.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^39.6.4",
"husky": "^7.0.0",
"shx": "^0.3.4"
}
}