-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.98 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
{
"name": "crypto-aio",
"version": "0.0.3",
"description": "All-In-One Crypto-Currency for Backend",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"debug": "jest --watch",
"prebuild": "rimraf dist",
"doc": "typedoc --out docs src/",
"build": "tsc -p ./tsconfig.json",
"clean": "rm -rf ./dist && rm -rf ./docs",
"lint": "eslint . '*/**/*.{js,ts}' --quiet --fix",
"fresh": "npm run clean && npm run doc && npm run test",
"format": "prettier --write \"(src|test)/**/*.(ts|js)\"",
"start:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register src/index.ts",
"test": "jest && make-coverage-badge --report-path docs/coverage/coverage-summary.json --output-path docs/coverage.svg"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vhidvz/crypto-aio.git"
},
"author": "Vahid V. <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/vhidvz/crypto-aio/issues"
},
"keywords": [
"bitcoin",
"ethereum",
"solana",
"tron",
"ton"
],
"homepage": "https://github.com/vhidvz/crypto-aio#readme",
"dependencies": {
"debug": "^4.3.7",
"ethers": "^6.13.4",
"tronweb": "^6.0.0",
"web3": "^4.14.0"
},
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.11",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"jshint": "^2.13.6",
"make-coverage-badge": "^1.2.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typedoc": "^0.25.13",
"typescript": "^5.4.5"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"files": [
"/dist"
]
}