-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.27 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.27 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
{
"name": "bsvup",
"version": "1.8.0",
"description": "Put file/directory on BSV, using D protocol.",
"main": "index.js",
"bin": {
"bsvup": "./cli.js"
},
"unpkg": "bsvup.min.js",
"dependencies": {
"bitcoin-ibe": "^1.2.2",
"bitcore-explorers": "github:bitpay/bitcore-explorers#1f1334f7ea7f75ed80f62d379613a961a66403f2",
"bsv": "^1.3.0",
"commander": "^4.1.1",
"inquirer": "^6.5.0",
"mattercloudjs": "^1.0.6",
"mime": "^2.4.4",
"mime-db": "^1.40.0",
"mime-lookup": "^0.0.2",
"node-fetch": "^2.6.0",
"qrcode-terminal": "^0.12.0"
},
"peerDependencies": {
"bsv": "latest"
},
"devDependencies": {
"webpack": "^4.41.6",
"webpack-cli": "^3.3.9"
},
"scripts": {
"test": "mocha",
"build": "webpack index.js --config webpack.config.js"
},
"browser": {
"./api.js": "./api.browser.js",
"./cache.js": "./cache.browser.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/monkeylord/bsvup.git"
},
"keywords": [
"bsv",
"d",
"bitcoin",
"blockchain",
"file",
"directory"
],
"author": "Monkeylord",
"license": "MIT",
"bugs": {
"url": "https://github.com/monkeylord/bsvup/issues"
},
"homepage": "https://github.com/monkeylord/bsvup#readme"
}