-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 758 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 758 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
37
{
"name": "bitails",
"version": "0.2.9",
"author": {
"name": "Tomás Díaz"
},
"description": "A Bitails API JS Wrapper library",
"main": "index.js",
"keywords": [
"Bitcoin",
"BSV",
"Blockchain",
"Bitcoin SV"
],
"license": "Open BSV",
"unpkg": "dist/bitails.min.js",
"files": [
"index.js",
"dist/*"
],
"source": "index.js",
"homepage": "http://github.com/untrusting/bitails",
"repository": {
"type": "git",
"url": "git://github.com/untrusting/bitails.git"
},
"scripts": {
"build": "npx browserify index.js --standalone Explorer > dist/bitails.js && uglifyjs dist/bitails.js > dist/bitails.min.js"
},
"dependencies": {
"axios": "^0.27.2",
"form-data": "^4.0.0"
},
"devDependencies": {
"uglify-es": "^3.3.9"
}
}