-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.09 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
{
"name": "energyplus-js2",
"version": "1.0.4",
"description": "this package is to analysis and parsing the result of energy plus software",
"main": "src/index.js",
"module": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "webpack --mode=production --node-env=production",
"build:dev": "webpack --mode=development",
"build:prod": "webpack --mode=production --node-env=production",
"watch": "webpack --watch",
"test": "node test/test.js",
"build-test": "npm run build && node test/test.js"
},
"keywords": [
"energy",
"plus",
"analysis",
"eplus",
"digram",
"result",
"parsing",
"chart"
],
"author": "Reza Rostaminikoo <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/RezaRostamiNikoo/epjs.git"
},
"license": "MIT",
"devDependencies": {
"@webpack-cli/generators": "^3.0.1",
"ts-loader": "^9.4.2",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"browser": {
"fs": false,
"path": false,
"os": false
}
}