-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
61 lines (61 loc) · 1.48 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
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "cake-to-cointracking-converter",
"version": "6.0.0",
"description": "CLI script to translate Cake export data to a valid CoinTracking import",
"main": "./processCsv.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"cake2ct": "./bin/cake2ct.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/geldmacher/Cake-to-CoinTracking-Converter.git"
},
"keywords": [
"cake",
"cointracking",
"crypto",
"cryptocurrency",
"taxes",
"lapis",
"staking",
"liquidity mining",
"defi"
],
"author": "Dennis Geldmacher",
"license": "AGPL-3.0-only",
"bugs": {
"url": "https://github.com/geldmacher/Cake-to-CoinTracking-Converter/issues"
},
"homepage": "https://github.com/geldmacher/Cake-to-CoinTracking-Converter#readme",
"dependencies": {
"chalk": "^4.1.2",
"cli-progress": "^3.10.0",
"csv-parser": "^3.0.0",
"csv-stringify": "^5.6.5",
"decimal.js": "^10.3.1",
"table": "^6.8.0",
"uuid": "^8.3.2",
"yargs": "^17.3.1"
},
"funding": [
{
"type": "GitHub Sponsors",
"url": "https://github.com/sponsors/geldmacher"
},
{
"type": "DeFiChain (DFI)",
"url": "df1qynftu7aqh3qm8k004zxp804h00wuzcm5rqv8wa"
},
{
"type": "Bitcoin (BTC)",
"url": "bc1q04z9xnuf9adac042k44q9v0j4ur7exkr5tp85t"
},
{
"type": "Ethereum (ETH)",
"url": "0xAb1c000a139B18a5B3F48cDA0e9eeF57eF842902"
}
]
}