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 0
/
Copy pathpackage.json
151 lines (151 loc) · 3.86 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
{
"name": "lisk-core",
"version": "4.0.6",
"description": "Lisk blockchain application platform",
"author": "Lisk Foundation <admin@lisk.com>, lightcurve GmbH <admin@lightcurve.io>",
"license": "Apache-2.0",
"keywords": [
"cryptocurrency",
"blockchain",
"lisk",
"nodejs",
"javascript"
],
"homepage": "https://github.com/LiskHQ/lisk-core#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/LiskHQ/lisk-core.git"
},
"bugs": {
"url": "https://github.com/LiskHQ/lisk-sdk/issues"
},
"engines": {
"node": ">=18.20.2 <=18"
},
"main": "dist/index.js",
"scripts": {
"lint": "eslint --ext .js,.ts .",
"lint:fix": "eslint --fix --ext .js,.ts .",
"format": "prettier --write '**/*'",
"prepack": "oclif-dev manifest && oclif-dev readme --multi --dir=docs/commands",
"prebuild": "if test -d dist; then rm -r dist; fi; rm -f tsconfig.tsbuildinfo;",
"build": "tsc",
"test": "jest",
"test:coverage": "jest --coverage=true --verbose --forceExit",
"test:ci": "jest --coverage=true --coverage-reporters=json --verbose",
"test:stress": "npx ts-node test/scripts/stress_test.ts",
"version": "oclif-dev readme --multi --dir=docs/commands && git add README.md docs",
"prepublishOnly": "yarn && yarn lint && yarn build"
},
"bin": {
"lisk-core": "./bin/run"
},
"lisk": {
"daemons": [
"start"
],
"addressPrefix": "lsk"
},
"oclif": {
"bin": "lisk-core",
"commands": "./dist/commands",
"plugins": [
"@oclif/plugin-autocomplete",
"@oclif/plugin-help",
"@oclif/plugin-version"
],
"additionalHelpFlags": [
"-h"
],
"additionalVersionFlags": [
"-v"
],
"topicSeparator": " ",
"topics": {
"account": {
"description": "Commands relating to Lisk Core accounts."
},
"block": {
"description": "Commands relating to Lisk Core blocks."
},
"blockchain": {
"description": "Commands relating to Lisk Core blockchain data."
},
"forger-info": {
"description": "Commands relating to Lisk Core forger-info data."
},
"forging": {
"description": "Commands relating to Lisk Core forging."
},
"system": {
"description": "Commands relating to Lisk Core node."
},
"config": {
"description": "Commands relating to Lisk Core node configuration."
},
"passphrase": {
"description": "Commands relating to Lisk Core passphrases."
},
"sdk": {
"description": "Commands relating to Lisk SDK development."
},
"transaction": {
"description": "Commands relating to Lisk Core transactions."
}
}
},
"files": [
"/bin",
"/oclif.manifest.json",
"/dist",
"/config",
"/docs"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@liskhq/lisk-framework-chain-connector-plugin": "0.1.2",
"@liskhq/lisk-framework-faucet-plugin": "0.3.2",
"@liskhq/lisk-framework-forger-plugin": "0.4.2",
"@liskhq/lisk-framework-monitor-plugin": "0.4.2",
"@liskhq/lisk-framework-report-misbehavior-plugin": "0.4.2",
"@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",
"fs-extra": "11.1.0",
"inquirer": "8.2.5",
"lisk-commander": "6.0.2",
"lisk-sdk": "6.0.2",
"tar": "6.2.1",
"tslib": "2.4.1"
},
"devDependencies": {
"@oclif/dev-cli": "1.26.0",
"@types/fs-extra": "9.0.9",
"@types/jest": "27.0.2",
"@types/jest-when": "2.7.3",
"@types/node": "12.20.6",
"@types/tar": "6.1.2",
"@typescript-eslint/eslint-plugin": "5.44.0",
"@typescript-eslint/parser": "5.44.0",
"eslint": "8.28.0",
"eslint-config-lisk-base": "2.0.1",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "27.1.6",
"globby": "10.0.2",
"husky": "6.0.0",
"jest": "29.3.1",
"jest-extended": "3.2.0",
"jest-when": "3.5.2",
"lint-staged": "10.5.4",
"prettier": "2.2.1",
"ts-jest": "29.0.3",
"ts-node": "10.9.1",
"typescript": "5.0.2"
}
}