-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
113 lines (113 loc) · 3.15 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"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": "3.7.22",
"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": ">= 5.10.0"
},
"main": "./main.js",
"files": [
"bower.json",
"README.md",
"LICENSE.md",
"main.js",
"main-with-backup-generator.js",
"lib/",
"vendor/",
"examples/",
"doc/",
"build/"
],
"browser": {
"./lib/backup_generator.js": "./lib/backup_generator-browser.js",
"./lib/pbkdf2_sha512.js": "./lib/pbkdf2_sha512-browser.js",
"./lib/pkginfo.js": "./lib/pkginfo-browser.js"
},
"dependencies": {
"assert-plus": "0.1.5",
"async": "0.9.0",
"bip39": "git://github.com/blocktrail/bip39.git#sjcl-browser-bip39",
"bitcoinjs-lib": "git://github.com/blocktrail/bitcoinjs-lib.git#137add06e7bba65efa0e52cf10391177e614f13f",
"bitcoinjs-message": "^1.0.1",
"bops": "0.0.6",
"bowser": "^0.7.2",
"colors": "*",
"create-hash": "^1.1.0",
"create-hmac": "^1.1.3",
"crypto-js": "^3.1.5",
"debug": "^2.6.9",
"lodash": "~4.17.2",
"pkginfo": "^0.4.1",
"promise": "^6.1.0",
"q": "1.0.1",
"randombytes": "^2.0.1",
"sjcl": "git://github.com/blocktrail/sjcl.git#minify-library",
"superagent": "^3.8.1",
"superagent-http-signature": "0.1.3",
"superagent-promise": "^0.2.0",
"webworkify": "^1.4.0"
},
"author": {
"name": "Ruben de Vries <[email protected]>"
},
"contributors": [
{
"name": "Ruben de Vries",
"email": "[email protected]"
},
{
"name": "Oisin Akiboye Conolly",
"email": "[email protected]"
}
],
"devDependencies": {
"blocktrail-sdk-backup-generator": "^0.2.0",
"brfs": "*",
"browserify": "*",
"browserify-versionify": "^1.0.6",
"coveralls": "^2.13.1",
"grunt": "~0.4.2",
"grunt-browserify": "git://github.com/jmreidy/grunt-browserify.git#4f96beb75d27fdebc4359e08e7db4c514f6265a8",
"grunt-contrib-concat": "~0.5.1",
"grunt-contrib-connect": "^0.7.1",
"grunt-contrib-uglify-es": "^3.2.1",
"grunt-contrib-watch": "~0.6.1",
"grunt-exec": "^1.0.1",
"grunt-notify": "~0.2.17",
"grunt-saucelabs": "git://github.com/blocktrail/grunt-saucelabs.git#92615f964444a7f304bfee41cb13627b0457f85d",
"grunt-template": "^1.0.0",
"jscs": "~3.0.7",
"jshint": "~2.9.1",
"mocha": "*",
"nyc": "^11.2.1",
"watchify": "*"
},
"scripts": {
"test": "mocha",
"coverage-test": "nyc --reporter=html --reporter=text mocha",
"browserify": "grunt build",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "./node_modules/jscs/bin/jscs main.js lib/ test/ && ./node_modules/jscs/bin/jscs main.js main.js lib/ test/"
}
}