-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
143 lines (143 loc) · 3.75 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
{
"name": "Histopia",
"version": "0.1.0",
"description": "Histopia",
"author": "[email protected]",
"license": "MIT",
"keywords": [
"blockchain",
"lisk",
"nodejs",
"javascript",
"typescript"
],
"homepage": "/dashboard",
"repository": {},
"engines": {
"node": ">=16.14.1 <=16",
"npm": ">=8.1.0"
},
"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 && 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 --verbose",
"version": "oclif-dev readme --multi --dir=docs/commands && git add README.md docs",
"prepublishOnly": "npm ci && npm run lint && npm run build"
},
"bin": {
"Histopia": "./bin/run"
},
"lisk": {
"addressPrefix": "lsk"
},
"oclif": {
"bin": "Histopia",
"commands": "./dist/commands",
"plugins": [
"@oclif/plugin-autocomplete",
"@oclif/plugin-help"
],
"topics": {
"account": {
"description": "Commands relating to Histopia accounts."
},
"block": {
"description": "Commands relating to Histopia blocks."
},
"blockchain": {
"description": "Commands relating to Histopia blockchain data."
},
"console": {
"description": "Histopia interactive REPL session to run commands."
},
"config": {
"description": "Commands relating to Histopia node configuration."
},
"forger-info": {
"description": "Commands relating to Histopia forger-info data."
},
"forging": {
"description": "Commands relating to Histopia forging."
},
"hash-onion": {
"description": "Create hash onions to be used by the forger."
},
"node": {
"description": "Commands relating to Histopia node."
},
"passphrase": {
"description": "Commands relating to Histopia passphrases."
},
"sdk": {
"description": "Commands relating to Lisk SDK development."
},
"transaction": {
"description": "Commands relating to Histopia transactions."
}
}
},
"files": [
"/bin",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/dist",
"/config",
"/docs"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@liskhq/lisk-framework-dashboard-plugin": "^0.1.7",
"@liskhq/lisk-framework-faucet-plugin": "^0.1.7",
"@oclif/command": "1.8.16",
"@oclif/errors": "^1.3.5",
"@oclif/plugin-autocomplete": "1.2.0",
"@oclif/plugin-help": "5.1.12",
"axios": "0.21.1",
"bigint-buffer": "^1.1.5",
"fs-extra": "9.1.0",
"inquirer": "7.3.2",
"lisk-commander": "^5.1.10",
"lisk-sdk": "^5.2.2",
"tar": "6.0.2",
"tslib": "1.13.0"
},
"devDependencies": {
"@oclif/config": "1.18.3",
"@oclif/dev-cli": "1.26.10",
"@types/fs-extra": "8.1.0",
"@types/jest": "26.0.21",
"@types/jest-when": "2.7.2",
"@types/node": "16.11.26",
"@types/tar": "4.0.3",
"@typescript-eslint/eslint-plugin": "4.19.0",
"@typescript-eslint/parser": "4.19.0",
"circomlib": "0.5.2",
"eslint": "7.22.0",
"eslint-config-lisk-base": "2.0.1",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jest": "24.3.2",
"globby": "10.0.2",
"husky": "4.2.5",
"jest": "26.6.3",
"jest-extended": "0.11.5",
"jest-when": "3.2.1",
"lint-staged": "10.2.11",
"prettier": "2.2.1",
"snarkjs": "^0.4.4",
"ts-jest": "26.5.4",
"ts-node": "9.1.1",
"typescript": "4.2.3"
}
}