-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
58 lines (58 loc) · 1.34 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
{
"name": "memo-push",
"version": "1.0.0",
"description": "Publish IPFS hashes to the BCH blockchain using the memo.cash protocol",
"main": "src/index.js",
"scripts": {
"test": "nyc mocha --forbid-only \"test/**/*.test.js\"",
"start": "node index.js",
"semantic-release": "semantic-release"
},
"bin": {
"memo-push": "./bin/run"
},
"bugs": {
"url": "https://github.com/christroutner/memo-push/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/christroutner/memo-push.git"
},
"keywords": [
"ipfs",
"javascript",
"node.js",
"bch",
"bitcoin",
"cash",
"memo.cash"
],
"author": "Chris Troutner <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/christroutner/memo-push#readme",
"dependencies": {
"@chris.troutner/bch-js": "3.2.0",
"@oclif/command": "^1.5.13",
"@oclif/config": "^1.14.0",
"@oclif/plugin-help": "^2.1.6",
"bch-donation": "^1.1.0"
},
"devDependencies": {
"@oclif/test": "^1.2.4",
"chai": "^4.2.0",
"eslint": "^5.16.0",
"eslint-config-oclif": "^3.1.0",
"eslint-plugin-prettier": "^3.0.1",
"mocha": "^7.0.1",
"nyc": "^14.1.0",
"prettier": "^2.0.0",
"semantic-release": "^16.0.0"
},
"files": [
"/bin",
"/src"
],
"oclif": {
"bin": "memo-push"
}
}