forked from Sfippa/api-client-v1-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.08 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
{
"name": "blockchain.info",
"version": "2.8.1",
"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/.bin/standard && node_modules/.bin/mocha ./**/spec.js"
},
"standard": {
"ignore": [
"*.md"
],
"global": [
"describe",
"it"
]
},
"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": "^1.1.2"
},
"devDependencies": {
"chai": "3.4.*",
"mocha": "2.3.*",
"nock": "5.2.*",
"standard": "~8.6.0"
}
}