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 3
/
package.json
114 lines (114 loc) · 3.07 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
{
"name": "lisk-migrator",
"version": "2.0.1",
"description": "A command-line tool for migrating the blockchain state to the latest protocol after a hard fork",
"author": "Lisk Foundation <[email protected]>, lightcurve GmbH <[email protected]>",
"license": "Apache-2.0",
"keywords": [
"lisk",
"blockchain"
],
"homepage": "https://github.com/LiskHQ/lisk-migrator/tree/master/#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/LiskHQ/lisk-migrator.git"
},
"bugs": {
"url": "https://github.com/LiskHQ/lisk-migrator/issues"
},
"engines": {
"node": ">=18.16 <=18",
"npm": ">=8.3.1"
},
"main": "dist/index.js",
"bin": {
"lisk-migrator": "./bin/run"
},
"scripts": {
"start": "ts-node src/index.js",
"format": "prettier --write '**/*'",
"lint": "eslint --ext .ts .",
"lint:fix": "eslint --fix --ext .ts .",
"test": "jest",
"test:coverage": "jest --config=jest.config.js --coverage=true --verbose --forceExit",
"test:ci": "jest --coverage=true --coverage-reporters=json --verbose",
"test:watch": "npm test -- --watch",
"copy-static-files": "copyfiles -u 1 src/**/*.sql ./dist",
"prebuild": "if test -d dist; then rm -r dist; fi; rm -f tsconfig.tsbuildinfo",
"build": "tsc && yarn copy-static-files",
"prepack": "oclif-dev manifest && oclif-dev readme --multi --dir=docs/commands",
"prepublishOnly": "yarn && yarn lint && yarn build"
},
"oclif": {
"commands": "./dist/commands",
"bin": "lisk-migrator",
"plugins": [
"@oclif/plugin-help"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"files": [
"/bin",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/dist",
"/docs",
"/config"
],
"dependencies": {
"@liskhq/lisk-api-client": "5.2.0",
"@liskhq/lisk-chain": "0.4.0",
"@liskhq/lisk-codec": "0.4.0",
"@liskhq/lisk-cryptography": "4.0.0",
"@liskhq/lisk-db": "0.3.10",
"@liskhq/lisk-utils": "0.4.0",
"@liskhq/lisk-validator": "0.8.0",
"@oclif/command": "1.8.21",
"@oclif/config": "1.14.0",
"@oclif/errors": "1.2.2",
"@oclif/plugin-help": "2.2.3",
"axios": "^1.6.0",
"cli-ux": "5.5.1",
"debug": "4.3.1",
"fs-extra": "11.1.0",
"lisk-framework": "0.11.0",
"semver": "^7.5.2",
"shelljs": "^0.8.5",
"tar": "6.1.13"
},
"devDependencies": {
"@oclif/dev-cli": "1.22.2",
"@types/debug": "4.1.5",
"@types/ed2curve": "0.2.2",
"@types/fs-extra": "9.0.1",
"@types/jest": "27.0.2",
"@types/jest-when": "2.7.3",
"@types/lodash.clonedeep": "4.5.6",
"@types/node": "12.12.11",
"@types/semver": "7.3.3",
"@types/tar": "6.1.4",
"@typescript-eslint/eslint-plugin": "5.44.0",
"@typescript-eslint/parser": "5.44.0",
"copyfiles": "2.2.0",
"eslint": "8.28.0",
"eslint-config-lisk-base": "2.0.1",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "27.1.6",
"husky": "4.3.8",
"jest": "27.3.1",
"jest-extended": "1.1.0",
"jest-when": "3.4.1",
"lint-staged": "10.2.11",
"prettier": "2.0.5",
"source-map-support": "0.5.19",
"ts-jest": "27.0.7",
"ts-node": "10.9.1",
"tsconfig-paths": "3.9.0",
"typescript": "4.9.3"
}
}