-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
74 lines (74 loc) · 1.94 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
{
"name": "@chris.troutner/bch-encrypt",
"description": "Multi-command CLI for working with ecrypted messages on BCH",
"version": "1.0.1",
"author": "Chris Troutner <[email protected]>",
"contributors": [
"Jeff Dickey @jdxcode",
"Gabriel Cardona <[email protected]>"
],
"bin": {
"bch-encrypt": "./bin/run"
},
"bugs": "https://github.com/christroutner/bch-encrypt/issues",
"dependencies": {
"@chris.troutner/bch-js": "^2.3.12",
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/plugin-help": "^2",
"eccrypto-js": "^4.5.3",
"wif": "^2.0.6"
},
"devDependencies": {
"@oclif/dev-cli": "^1",
"@oclif/test": "^1",
"chai": "^4.2.0",
"coveralls": "^3.0.11",
"eslint": "^5.13",
"eslint-config-oclif": "^3.1",
"globby": "^10",
"mocha": "^5",
"nyc": "^14",
"semantic-release": "^17.0.6",
"sinon": "^9.0.2",
"standard": "^14.3.3"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/src"
],
"homepage": "https://github.com/christroutner/bch-encrypt",
"keywords": [
"oclif",
"bitcoin",
"encryption"
],
"license": "MIT",
"main": "src/index.js",
"oclif": {
"commands": "./src/commands",
"bin": "bch-encrypt",
"plugins": [
"@oclif/plugin-help"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/christroutner/bch-encrypt.git"
},
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"pretest": "standard --env mocha --fix",
"prepack": "oclif-dev manifest && oclif-dev readme",
"test": "nyc mocha --forbid-only \"test/**/*.test.js\"",
"version": "oclif-dev readme && git add README.md",
"lint": "standard --env mocha --fix",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"coverage:report": "export NETWORK=mainnet && nyc --reporter=html mocha --timeout 25000 test/commands/"
}
}