-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 989 Bytes
/
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
{
"name": "mcstatstoexcel",
"version": "0.0.1",
"description": "converts Minecraft stats into an excel file for further usage",
"main": "src/main.js",
"directories": {
"example": "example"
},
"scripts": {
"test": "node src/main.js",
"help": "node src/main.js --help",
"example": "node src/main.js -c ./example/config.json",
"exampleArg": "node src/main.js -i ./example/input -o ./example/result.xlsx -s ./example/summationExample.json",
"build": "pkg --out-path ./dist ./src/main.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Plagiatus/MCStatsToExcel.git"
},
"author": "Plagiatus",
"license": "ISC",
"bugs": {
"url": "https://github.com/Plagiatus/MCStatsToExcel/issues"
},
"homepage": "https://github.com/Plagiatus/MCStatsToExcel#readme",
"dependencies": {
"exceljs": "^4.2.0",
"node-fetch": "^2.6.1",
"prompt": "^1.1.0"
},
"devDependencies": {
"@types/node": "^14.14.20"
}
}