forked from blocktrail/blocktrail-sdk-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
88 lines (88 loc) · 2.04 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "blocktrail-sdk",
"description": "BlockTrail's Developer Friendly API binding for NodeJS",
"keywords": [
"blocktrail",
"bitcoin",
"sdk",
"api",
"blockchain",
"payment",
"bitcoin data",
"wallet",
"multi-signature",
"transaction"
],
"version": "1.3.13",
"homepage": "https://www.blocktrail.com/api/docs/lang/nodejs",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/blocktrail/blocktrail-sdk-nodejs.git"
},
"bugs": {
"url": "http://github.com/blocktrail/blocktrail-sdk-nodejs/issues"
},
"engines": {
"node": ">= 0.10.0"
},
"main": "./main.js",
"browser": {
"./lib/backup_generator.js": "./lib/backup_generator-browser.js"
},
"dependencies": {
"assert-plus": "0.1.5",
"async": "0.9.0",
"bip39": "~2.1.2",
"bitcoinjs-lib": "1.5.6",
"bops": "0.0.6",
"bowser": "^0.7.2",
"colors": "*",
"create-hash": "^1.1.0",
"create-hmac": "^1.1.3",
"debug": "0.8.1",
"html-pdf": "1.0.*",
"lodash": "3.1.0",
"promise": "^6.1.0",
"q": "1.0.1",
"qrcode-canvas": "~0.0.1",
"qrcode-js": "0.0.*",
"randombytes": "^2.0.1",
"superagent": "^0.21.0",
"superagent-http-signature": "0.1.3",
"superagent-promise": "^0.2.0",
"webworkify": "^1.0.2"
},
"author": {
"name": "Ruben de Vries <[email protected]>"
},
"contributors": [
{
"name": "Ruben de Vries",
"email": "[email protected]"
},
{
"name": "Oisin Akiboye Conolly",
"email": "[email protected]"
}
],
"devDependencies": {
"grunt": "~0.4.2",
"grunt-browserify": "~3.5.1",
"grunt-contrib-uglify": "~0.8.1",
"grunt-contrib-concat": "~0.5.1",
"grunt-contrib-watch": "~0.6.1",
"grunt-notify": "~0.2.17",
"mocha": "*",
"jshint": "*",
"jscs": "*",
"browserify": "*",
"watchify": "*",
"brfs": "*"
},
"scripts": {
"test": "mocha",
"browserify": "grunt build",
"lint": "jshint main.js lib/ test/ && jscs main.js lib/ test/"
}
}