-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
154 lines (154 loc) · 3.98 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
{
"name": "muzikie",
"version": "0.4.0",
"description": "Muzikie blockchain application",
"author": "reyraa",
"license": "ISC",
"keywords": [
"blockchain",
"nodejs",
"javascript",
"typescript"
],
"homepage": "https://muzikie.com",
"repository": {},
"engines": {
"node": ">=18.12.0 <=18",
"npm": ">=8.1.0"
},
"main": "dist/index.js",
"scripts": {
"lint": "eslint --ext .ts .",
"lint:fix": "eslint --fix --ext .js,.ts .",
"format": "prettier --write '**/*'",
"prepack": "oclif manifest && oclif readme --multi --dir=docs/commands && npm shrinkwrap && npm prune --production && npm shrinkwrap",
"prebuild": "if test -d dist; then rm -r dist; fi; rm -f tsconfig.tsbuildinfo; rm -f npm-shrinkwrap.json",
"start": "echo Run \"./bin/run start\" to start the app",
"build": "tsc",
"test": "jest --passWithNoTests",
"test:coverage": "jest --passWithNoTests --coverage=true --coverage-reporters=text",
"test:ci": "jest --passWithNoTests --coverage=true --coverage-reporters=json",
"version": "oclif readme --multi --dir=docs/commands && git add README.md docs",
"prepublishOnly": "npm ci && npm run lint && npm run build"
},
"bin": {
"muzikie": "./bin/run"
},
"klayr": {
"addressPrefix": "kly"
},
"oclif": {
"bin": "muzikie",
"commands": "./dist/commands",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-autocomplete",
"@oclif/plugin-version"
],
"additionalHelpFlags": [
"-h"
],
"additionalVersionFlags": [
"-v"
],
"topicSeparator": " ",
"topics": {
"block": {
"description": "Commands relating to muzikie blocks."
},
"blockchain": {
"description": "Commands relating to muzikie blockchain data."
},
"console": {
"description": "muzikie interactive REPL session to run commands."
},
"config": {
"description": "Commands relating to muzikie node configuration."
},
"keys": {
"description": "Commands relating to muzikie key generation."
},
"generator": {
"description": "Commands relating to muzikie block generator."
},
"hash-onion": {
"description": "Create hash onions to be used by the forger."
},
"system": {
"description": "Commands relating to muzikie node."
},
"passphrase": {
"description": "Commands relating to muzikie passphrases."
},
"endpoint": {
"description": "Commands relating to muzikie endpoint."
},
"sdk": {
"description": "Commands relating to Klayr SDK development."
},
"transaction": {
"description": "Commands relating to muzikie transactions."
}
}
},
"files": [
"/bin",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/dist",
"/config",
"/docs"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@klayr/chain-connector-plugin": "^0.2.2",
"@klayr/cryptography": "^4.1.1",
"@klayr/dashboard-plugin": "0.4.2",
"@klayr/faucet-plugin": "0.4.2",
"@klayr/generator-plugin": "0.5.2",
"@klayr/monitor-plugin": "0.5.2",
"@klayr/report-misbehavior-plugin": "0.5.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.7.4",
"fs-extra": "11.1.0",
"inquirer": "8.2.5",
"klayr-commander": "6.1.2",
"klayr-sdk": "6.1.3",
"md5": "^2.3.0",
"tar": "6.1.11",
"tslib": "2.4.1"
},
"devDependencies": {
"@oclif/test": "2.2.12",
"@types/fs-extra": "9.0.13",
"@types/jest": "29.2.3",
"@types/jest-when": "3.5.2",
"@types/md5": "^2.3.5",
"@types/node": "18.15.3",
"@types/tar": "6.1.3",
"@typescript-eslint/eslint-plugin": "5.44.0",
"@typescript-eslint/parser": "5.44.0",
"eslint": "8.28.0",
"eslint-config-klayr-base": "2.0.1",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "27.1.6",
"globby": "10.0.2",
"husky": "4.2.5",
"jest": "29.3.1",
"jest-extended": "3.2.0",
"jest-when": "3.5.2",
"lint-staged": "10.2.11",
"oclif": "4.14.19",
"prettier": "2.8.0",
"ts-jest": "29.0.3",
"ts-node": "10.9.1",
"typescript": "5.0.2"
}
}