-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
42 lines (42 loc) · 1.18 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
{
"name": "bitcoinfiles",
"version": "0.6.0",
"description": "Upload and Download files to Bitcoin Cash blockchain",
"main": "index.js",
"files": [
"lib/",
"dist/"
],
"scripts": {
"test": "mocha",
"postinstall": "patch-package",
"build": "npx tsc && browserify index.js --standalone bitcoinfiles > dist/bitcoinfiles.js && uglifyjs dist/bitcoinfiles.js > dist/bitcoinfiles.min.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/simpleledgerinc/bitcoinfilesjs.git"
},
"author": "Simple Ledger, Inc.",
"license": "MIT",
"unpkg": "dist/bitcoinfiles.min.js",
"bugs": {
"url": "https://github.com/simpleledgerinc/bitcoinfilesjs/issues"
},
"homepage": "https://github.com/simpleledgerinc/bitcoinfilesjs#readme",
"dependencies": {
"bitcore-lib-cash": "8.25.8",
"buffer": "^6.0.3",
"grpc-bchrpc": "^0.3.0"
},
"devDependencies": {
"@types/bitcore-lib-cash": "^8.23.2",
"@types/mocha": "^8.2.2",
"browserify": "^16.2.2",
"grpc-bchrpc-node": "^0.15.0",
"mocha": "^8.3.2",
"patch-package": "^6.2.2",
"source-map-support": "^0.5.19",
"ts-node": "^9.1.1",
"uglify-es": "^3.3.9"
}
}