-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.13 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
{
"name": "thermaljs",
"version": "0.0.1",
"description": "Collection of BIM tools",
"main": "dist/lib/thermal.js",
"module": "dist/lib-esm/",
"types": "dist/lib/index.d.ts",
"scripts": {
"test": "jest",
"build": "npx eslint . && tsc -m es6 --outDir dist/lib-esm && ./node_modules/.bin/webpack --mode production",
"docs": "npx typedoc --out docs src"
},
"keywords": [
"bim",
"construction",
"building-physics",
"u-value",
"r-value",
"thermal transmittance",
"thermal transfer coefficient"
],
"repository": {
"type": "git",
"url": "git+https://github.com/D4ve-R/thermaljs.git"
},
"author": "D4ve-R",
"license": "MIT",
"bugs": {
"url": "https://github.com/D4ve-R/thermaljs/issues"
},
"devDependencies": {
"@types/jest": "^29.2.6",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"eslint": "^8.32.0",
"jest": "^29.3.1",
"ts-jest": "^29.0.5",
"ts-loader": "^9.4.2",
"typedoc": "^0.23.24",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"files": [
"dist"
]
}