forked from Sfippa/api-client-v1-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 949 Bytes
/
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
{
"name": "blockchain.info",
"version": "2.4.2",
"engine": "node >= 0.10.36",
"description": "A Node implementation for accessing the Blockchain.info API.",
"author": {
"name": "Blockchain.info",
"url": "https://blockchain.info"
},
"main": "index.js",
"contributors": [
"Justin Tormey <[email protected]>"
],
"maintainers": [
"justintormey <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/blockchain/api-v1-client-node.git"
},
"keywords": [
"blockchain",
"bitcoin"
],
"scripts": {
"test": "node_modules/mocha/bin/mocha ./**/spec.js"
},
"dependencies": {
"q": "^1.4.1",
"request-promise": "^0.4.3",
"url-join": "0.0.1",
"url-parse": "^1.0.5",
"url-pattern": "^0.10.2"
},
"optionalDependencies": {
"ws": "^0.8.0"
},
"devDependencies": {
"chai": "3.4.*",
"mocha": "2.3.*",
"nock": "5.2.*"
}
}