-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
141 lines (141 loc) · 4.98 KB
/
Copy pathpackage.json
File metadata and controls
141 lines (141 loc) · 4.98 KB
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
{
"name": "chronicler",
"version": "0.1.0",
"description": "A distributed network to store, audit, or verify various types of data built using the Lisk SDK.",
"author": "Sidechain Solutions",
"license": "MIT",
"keywords": [
"chronicler",
"lisk",
"sdk",
"javascript",
"blockchain",
"sidechain",
"sidechain solutions"
],
"homepage": "",
"repository": {},
"engines": {
"node": ">=12.13.0 <=12",
"npm": ">=6.12.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": {
"chronicler": "./bin/run"
},
"lisk": {
"addressPrefix": "lsk"
},
"oclif": {
"bin": "chronicler",
"commands": "./dist/commands",
"plugins": [
"@oclif/plugin-autocomplete",
"@oclif/plugin-help"
],
"topics": {
"account": {
"description": "Commands relating to chronicler accounts."
},
"block": {
"description": "Commands relating to chronicler blocks."
},
"blockchain": {
"description": "Commands relating to chronicler blockchain data."
},
"console": {
"description": "chronicler interactive REPL session to run commands."
},
"config": {
"description": "Commands relating to chronicler node configuration."
},
"forger-info": {
"description": "Commands relating to chronicler forger-info data."
},
"forging": {
"description": "Commands relating to chronicler forging."
},
"hash-onion": {
"description": "Create hash onions to be used by the forger."
},
"node": {
"description": "Commands relating to chronicler node."
},
"passphrase": {
"description": "Commands relating to chronicler passphrases."
},
"sdk": {
"description": "Commands relating to Lisk SDK development."
},
"transaction": {
"description": "Commands relating to chronicler 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.4",
"@liskhq/lisk-framework-faucet-plugin": "^0.1.4",
"@oclif/command": "1.8.0",
"@oclif/plugin-autocomplete": "0.3.0",
"@oclif/plugin-help": "3.2.2",
"fs-extra": "9.0.1",
"inquirer": "7.3.2",
"lisk-commander": "^5.1.5",
"lisk-sdk": "^5.1.4",
"tar": "6.0.2",
"tslib": "1.13.0",
"axios": "0.21.1"
},
"devDependencies": {
"@oclif/dev-cli": "1.22.2",
"@oclif/config": "1.15.1",
"@types/fs-extra": "9.0.1",
"@types/node": "12.20.6",
"@types/tar": "4.0.3",
"@types/jest": "26.0.21",
"@types/jest-when": "2.7.2",
"@typescript-eslint/eslint-plugin": "4.19.0",
"@typescript-eslint/parser": "4.19.0",
"eslint": "7.22.0",
"eslint-config-lisk-base": "2.0.0",
"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",
"ts-jest": "26.5.4",
"ts-node": "9.1.1",
"typescript": "4.2.3"
}
}