-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 1.66 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
62
63
64
65
66
67
68
69
70
71
72
{
"name": "taxler",
"version": "1.0.0",
"description": "Crypto taxes for trading, mining, liquidity mining, staking and lending.",
"main": "index.js",
"bin": {
"taxler": "index.js"
},
"files": [
"apis",
"common",
"io",
"plugins",
"di.config.js",
"taxler.js",
"index.js"
],
"keywords": [
"crypto",
"trading",
"mining",
"cryptocurrency",
"taxes",
"lending",
"staking",
"liquidity-mining"
],
"scripts": {
"start": "npm run build:watch",
"build": "run-s compile copy-package copy-readme",
"copy-package": "shx cp package.json lib/",
"copy-readme": "shx cp README.md lib/",
"compile": "tsc -p .",
"build:watch": "nodemon -r dotenv/config --watch \"src/**/*.ts\" --exec \"ts-node\" src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tehfonsi/taxler.git"
},
"author": "Stephan Schober",
"license": "ISC",
"bugs": {
"url": "https://github.com/tehfonsi/taxler/issues"
},
"homepage": "https://github.com/tehfonsi/taxler#readme",
"devDependencies": {
"@types/node": "^16.7.10",
"@types/node-fetch": "^2.5.12",
"@types/yargs": "^17.0.2",
"dotenv": "^10.0.0",
"nodemon": "^2.0.12",
"npm-run-all": "^4.1.5",
"semantic-release": "^23.1.1",
"shx": "^0.3.3",
"ts-node": "^10.2.1",
"typescript": "^4.4.2"
},
"dependencies": {
"inversify": "^5.1.1",
"moment": "^2.29.1",
"node-fetch": "^2.7.0",
"reflect-metadata": "^0.1.13",
"yargs": "^17.1.1"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"tag": "latest"
},
"volta": {
"node": "20.12.2"
}
}