forked from unwriter/datapay
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 746 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 746 Bytes
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
{
"name": "datapay",
"version": "0.0.18",
"description": "post data over bitcoin sv",
"main": "index.js",
"scripts": {
"test": "mocha",
"build": "browserify index.js --standalone datapay > dist/datapay.js && uglifyjs dist/datapay.js > dist/datapay.min.js"
},
"keywords": [
"bsv",
"bitcoinsv",
"bitcoin",
"blockchain",
"cryptocurrency"
],
"author": "unwriter",
"license": "MIT",
"unpkg": "dist/datapay.min.js",
"dependencies": {
"bitcore-explorers": "^1.0.1",
"buffer": "^5.2.1",
"mingo": "^2.2.4"
},
"peerDependencies": {
"bsv": "0.27.1"
},
"files": [
"dist"
],
"devDependencies": {
"dotenv": "^6.2.0",
"mocha": "^5.1.1",
"uglify-es": "^3.3.9"
}
}