forked from fireblocks/fireblocks-json-rpc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.34 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
{
"name": "@fireblocks/fireblocks-json-rpc",
"version": "0.0.2",
"description": "",
"repository": "github:fireblocks/fireblocks-web3-provider",
"author": "Fireblocks",
"license": "MIT",
"keywords": [
"ethereum",
"smart-contracts",
"wallet",
"fireblocks",
"jsonrpc",
"web3",
"crypto",
"cryptocurrency",
"dapp",
"evm"
],
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"start": "npm run build && node dist/src/cli.js",
"test": "npm run build && npm install -g . && mocha --exit --recursive 'test/**/*.test.ts'",
"prepare": "npm run build"
},
"bin": {
"fireblocks-json-rpc": "./dist/src/cli.js"
},
"files": [
"dist/",
"LICENSE",
"README.md"
],
"dependencies": {
"@fireblocks/fireblocks-web3-provider": "^1.1.5",
"commander": "^9.4.1",
"debug": "^4.3.4",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"figlet": "^1.5.2",
"tslib": "^2.4.1"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/debug": "^4.1.7",
"@types/express": "^4.17.15",
"@types/figlet": "^1.5.5",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.18",
"chai": "^4.3.7",
"mocha": "^10.2.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}