-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 941 Bytes
/
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
{
"name": "@capitalisk/ldpos-commander",
"version": "1.5.2",
"description": "CLI client for LDPoS blockchains.",
"main": "index.js",
"scripts": {
"test": "mocha --reporter spec --timeout 40000 --slow 40000",
"postversion": "git push && git push --follow-tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Capitalisk/ldpos-commander.git"
},
"keywords": [
"ldpos",
"cli",
"client",
"blockchain"
],
"author": "Jonathan Gros-Dubois",
"license": "MIT",
"bugs": {
"url": "https://github.com/Capitalisk/ldpos-commander/issues"
},
"homepage": "https://github.com/Capitalisk/ldpos-commander#readme",
"devDependencies": {
"mocha": "^8.2.1"
},
"dependencies": {
"@maartennnn/cli-builder": "^2.3.0",
"bip39": "^3.0.4",
"fs-extra": "^9.0.1",
"ldpos-client": "^10.3.0",
"minimist": "^1.2.5"
},
"bin": {
"ldpos": "bin/cli.js"
}
}