forked from celo-org/celo-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
135 lines (135 loc) · 4.3 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "@celo/celocli",
"description": "CLI Tool for transacting with the Celo protocol",
"version": "0.0.49-dev",
"author": "Celo",
"license": "Apache-2.0",
"repository": "celo-org/celo-monorepo",
"homepage": "https://github.com/celo-org/celo-monorepo",
"bugs": "https://github.com/celo-org/celo-monorepo/issues?utf8=%E2%9C%93&q=label%3Acli+",
"types": "lib/index.d.ts",
"main": "lib/index.js",
"bin": {
"celocli": "./bin/run"
},
"keywords": [
"celo",
"celocli",
"celo-cli"
],
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"clean": "tsc -b . --clean",
"build": "tsc -b .",
"docs": "yarn oclif-dev readme --multi --dir=../docs/command-line-interface && yarn prettier ../docs/command-line-interface/*.md --write",
"lint": "tslint -c tslint.json --project tsconfig.json",
"prepack": "yarn run build && oclif-dev manifest && oclif-dev readme",
"test:reset": "yarn --cwd ../protocol devchain generate-tar .tmp/devchain.tar.gz --migration_override ../dev-utils/src/migration-override.json --upto 24 --release_gold_contracts scripts/truffle/releaseGoldExampleConfigs.json",
"test:livechain": "yarn --cwd ../protocol devchain run-tar .tmp/devchain.tar.gz",
"test": "TZ=UTC jest --runInBand"
},
"dependencies": {
"@celo/contractkit": "0.4.5-dev",
"@celo/utils": "0.1.15-dev",
"@ledgerhq/hw-transport-node-hid": "^5.11.0",
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/plugin-autocomplete": "^0.1.5",
"@oclif/plugin-help": "^2",
"@types/command-exists": "^1.2.0",
"@oclif/plugin-warn-if-update-available": "^1.7.0",
"bip32": "2.0.5",
"bip39": "3.0.2",
"bls12377js": "https://github.com/celo-org/bls12377js#cb38a4cfb643c778619d79b20ca3e5283a2122a6",
"chalk": "^2.4.2",
"cli-table": "^0.3.1",
"cli-ux": "^5.3.1",
"command-exists": "^1.2.9",
"debug": "^4.1.1",
"ethereumjs-util": "^5.2.0",
"events": "^3.0.0",
"firebase": "^7.2.2",
"fs-extra": "^8.1.0",
"humanize-duration": "^3.21.0",
"moment": "2.24.0",
"path": "^0.12.7",
"prompts": "^2.0.1",
"randombytes": "^2.0.1",
"save": "^2.4.0",
"tslib": "^1",
"web3": "1.2.4"
},
"devDependencies": {
"@celo/dev-cli": "^2.0.3",
"@celo/dev-utils": "0.0.1-dev",
"@types/cli-table": "^0.3.0",
"@types/debug": "^4.1.4",
"@types/fs-extra": "^8.0.0",
"@types/humanize-duration": "^3.18.0",
"@types/mocha": "^7.0.2",
"@types/node": "^10",
"globby": "^8",
"prettier": "1.19.1",
"typescript": "^3.8.3"
},
"files": [
"README.md",
"/bin",
"/lib",
"/oclif.manifest.json"
],
"oclif": {
"commands": "./lib/commands",
"topics": {
"account": {
"description": "Manage your account, keys, and metadata"
},
"config": {
"description": "Configure CLI options which persist across commands"
},
"election": {
"description": "Participate in and view the state of Validator Elections"
},
"exchange": {
"description": "Exchange Celo Dollars and Celo Gold via the stability mechanism"
},
"governance": {
"description": "Interact with on-chain governance proposals and hotfixes"
},
"lockedgold": {
"description": "View and manage locked Celo Gold"
},
"node": {
"description": "Manage your Celo node"
},
"transfer": {
"description": "Transfer Celo Gold and Celo Dollars"
},
"validator": {
"description": "View and manage Validators"
},
"validatorgroup": {
"description": "View and manage Validator Groups"
},
"releasegold": {
"description": "View and manage Release Gold contracts"
},
"dkg": {
"description": "Publish your locally computed DKG results to the blockchain"
}
},
"bin": "celocli",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-autocomplete",
"@oclif/plugin-warn-if-update-available"
],
"warn-if-update-available": {
"timeoutInDays": 1,
"message": "<%= config.name %> update available from <%= chalk.greenBright(config.version) %> to <%= chalk.greenBright(latest) %>."
},
"repositoryPrefix": "https://github.com/celo-org/celo-monorepo/tree/master/packages/cli/<%- commandPath %>"
}
}