This repository has been archived by the owner on Jun 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 458
/
Copy pathpackage.json
171 lines (171 loc) · 4.52 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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
{
"name": "lisk-commander",
"version": "6.1.0",
"description": "A command line interface for Lisk",
"author": "Lisk Foundation <[email protected]>, lightcurve GmbH <[email protected]>",
"license": "Apache-2.0",
"keywords": [
"lisk",
"blockchain",
"command-line",
"nodejs",
"javascript"
],
"homepage": "https://github.com/LiskHQ/lisk-sdk/tree/master/commander#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/LiskHQ/lisk-sdk.git"
},
"bugs": {
"url": "https://github.com/LiskHQ/lisk-sdk/issues"
},
"engines": {
"node": ">=18.12.0 <=18",
"npm": ">=8.1.0"
},
"main": "dist/index.js",
"bin": {
"lisk": "./bin/run"
},
"lisk": {
"addressPrefix": "lsk"
},
"scripts": {
"start": "ts-node src/index.js",
"format": "prettier --write '**/*'",
"lint": "eslint --ext .ts .",
"lint:fix": "eslint --fix --ext .js,.ts .",
"test:watch": "npm run test:local -- --watch",
"test:watch:min": "npm run test:watch -- --reporter=min",
"prebuild": "if test -d dist; then rm -r dist; fi; rm -f tsconfig.tsbuildinfo; rm -f npm-shrinkwrap.json",
"build": "tsc",
"test": "jest",
"test:coverage": "jest --coverage=true --coverage-reporters=text",
"test:ci": "jest --coverage=true --coverage-reporters=json",
"postbuild": "copyfiles -u 1 -a 'src/bootstrapping/templates/lisk-template-ts/templates/**/*' dist/",
"prepack": "oclif manifest"
},
"oclif": {
"commands": "./dist/commands",
"bin": "lisk",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-autocomplete",
"@oclif/plugin-version"
],
"additionalHelpFlags": [
"-h"
],
"additionalVersionFlags": [
"-v"
],
"topicSeparator": " ",
"topics": {
"account": {
"description": "Commands relating to Lisk accounts."
},
"console": {
"description": "Lisk interactive REPL session to run commands."
},
"generate": {
"description": "Commands relating to Lisk generator."
},
"hash-onion": {
"description": "Create hash onions to be used by the forger."
},
"help": {
"description": "Displays help."
},
"init": {
"description": "Commands relating to bootstrapping a blockchain application or plugin using Lisk SDK."
},
"message": {
"description": "Commands relating to user messages."
},
"network-identifier": {
"description": "Create network identifier for a given genesis block id and community identifier."
},
"passphrase": {
"description": "Commands relating to Lisk passphrases."
},
"endpoint": {
"description": "Commands relating to endpoints."
}
}
},
"files": [
"/bin",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/dist",
"/docs"
],
"dependencies": {
"@liskhq/lisk-api-client": "^6.1.0",
"@liskhq/lisk-chain": "^0.6.0",
"@liskhq/lisk-client": "^6.1.0",
"@liskhq/lisk-codec": "^0.5.0",
"@liskhq/lisk-cryptography": "^4.1.0",
"@liskhq/lisk-db": "0.3.7",
"@liskhq/lisk-passphrase": "^4.1.0",
"@liskhq/lisk-transactions": "^6.1.0",
"@liskhq/lisk-utils": "^0.4.0",
"@liskhq/lisk-validator": "^0.9.0",
"@oclif/core": "1.20.4",
"@oclif/plugin-autocomplete": "1.3.6",
"@oclif/plugin-help": "5.1.19",
"@oclif/plugin-version": "1.1.3",
"axios": "1.6.0",
"bip39": "3.0.3",
"chalk": "4.1.0",
"cli-table3": "0.6.0",
"fs-extra": "11.1.0",
"inquirer": "8.2.5",
"lisk-framework": "^0.12.0",
"listr": "0.14.3",
"progress": "2.0.3",
"semver": "7.5.2",
"strip-ansi": "6.0.1",
"tar": "6.1.12",
"ts-morph": "17.0.1",
"tslib": "2.4.1",
"yeoman-environment": "3.12.1",
"yeoman-generator": "5.7.0"
},
"devDependencies": {
"@oclif/test": "2.2.12",
"@types/bip39": "3.0.0",
"@types/expect": "24.3.0",
"@types/fs-extra": "9.0.13",
"@types/inquirer": "8.2.5",
"@types/jest": "29.2.3",
"@types/jest-when": "3.5.2",
"@types/jquery": "3.3.33",
"@types/listr": "0.14.2",
"@types/node": "18.15.3",
"@types/progress": "2.0.3",
"@types/semver": "7.3.13",
"@types/strip-ansi": "5.2.1",
"@types/tar": "6.1.3",
"@types/yeoman-environment": "2.10.8",
"@types/yeoman-generator": "5.2.11",
"@typescript-eslint/eslint-plugin": "5.44.0",
"@typescript-eslint/parser": "5.44.0",
"copyfiles": "2.4.1",
"eslint": "8.28.0",
"eslint-config-lisk-base": "2.0.1",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "27.1.6",
"jest": "29.3.1",
"jest-extended": "3.2.0",
"jest-when": "3.5.2",
"oclif": "3.2.31",
"prettier": "2.8.0",
"rxjs-compat": "6.5.4",
"source-map-support": "0.5.21",
"ts-jest": "29.0.3",
"ts-node": "10.9.1",
"tsconfig-paths": "4.1.0",
"typescript": "5.0.2"
}
}