forked from cnumr/GreenIT-Analysis-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.24 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.24 KB
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": "greenit-analysis-cli",
"version": "0.2.0",
"description": "",
"main": "index.js",
"bin": {
"greenit": "greenit"
},
"scripts": {
"postinstall": "node builder.js",
"test": "jest",
"build": "node builder.js",
"start": "node index.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@influxdata/influxdb-client": "^1.20.0",
"@influxdata/influxdb-client-apis": "^1.20.0",
"concat-files": "^0.1.1",
"debug": "^4.3.0",
"exceljs": "^4.4.0",
"glob": "^10.3.10",
"mustache": "^4.2.0",
"progress": "^2.0.3",
"puppeteer": "^23.9.0",
"puppeteer-har": "^1.1.2",
"sitemapper": "^3.2.8",
"tough-cookie": "^4.1.3",
"xml2js": "^0.5.0",
"yaml": "^2.6.1",
"yargs": "^17.7.2"
},
"overrides": {
"chrome-har": {
"debug": "^4.3.0",
"tough-cookie": "^4.1.3"
},
"sitemapper": {
"xml2js": "^0.5.0"
}
},
"devDependencies": {
"jest": "^29.7.0",
"jest-expect-message": "^1.1.3"
},
"jest": {
"setupFilesAfterEnv": [
"jest-expect-message"
]
}
}