-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 3.05 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
{
"name": "swaptoshi-migrator",
"version": "1.0.0-alpha.0",
"description": "A command-line tool for migrating the Swaptoshi blockchain state to the latest protocol after a hard fork",
"author": "swaptoshi",
"license": "Apache-2.0",
"keywords": [
"klayr",
"blockchain"
],
"homepage": "https://swaptoshi.com",
"repository": {
"type": "git",
"url": "git+https://github.com/swaptoshi/swaptoshi-migrator.git"
},
"bugs": {
"url": "https://github.com/swaptoshi/swaptoshi-migrator/issues"
},
"engines": {
"node": ">=18.16 <=18",
"npm": ">=8.3.1"
},
"main": "dist/index.js",
"bin": {
"swaptoshi-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": "swaptoshi-migrator",
"plugins": [
"@oclif/plugin-help"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"files": [
"/bin",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/dist",
"/docs",
"/config"
],
"dependencies": {
"@klayr/api-client": "6.1.2",
"@klayr/chain": "0.6.2",
"@klayr/codec": "0.5.1",
"@klayr/cryptography": "4.1.1",
"@klayr/utils": "0.4.3",
"@klayr/validator": "0.9.1",
"@liskhq/lisk-db": "0.3.10",
"@oclif/command": "1.8.21",
"@oclif/config": "1.14.0",
"@oclif/errors": "1.2.2",
"@oclif/plugin-help": "2.2.3",
"ajv-formats": "2.1.1",
"axios": "^1.6.0",
"cli-ux": "5.5.1",
"debug": "4.3.1",
"fs-extra": "11.1.0",
"klayr-framework": "0.11.4",
"semver": "^7.5.2",
"shelljs": "^0.8.5",
"swaptoshi-sdk": "1.0.0-alpha.0",
"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": "18.16.20",
"@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-klayr-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"
}
}