-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
47 lines (47 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
{
"name": "helloblock-js",
"version": "0.2.5",
"description": "HelloBlock JS Client Library",
"keywords": [
"bitcoin",
"helloblock"
],
"repository": {
"type": "git",
"url": "https://github.com/helloblock/helloblock-js"
},
"scripts": {
"test": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- -R spec"
},
"main": "./lib/helloblock.js",
"author": "Scott Li",
"license": "BSD-2-Clause",
"dependencies": {
"request": "~2.33.0",
"underscore": "~1.6.0",
"browser-request": "^0.3.1"
},
"browser": {
"request": "browser-request"
},
"testling": {
"browsers": [
"chrome/20..latest",
"firefox/21..latest",
"safari/latest",
"opera/15..latest",
"iphone/6..latest",
"ipad/6..latest",
"android-browser/4.2..latest"
],
"harness": "mocha-bdd",
"files": "test/*.js"
},
"devDependencies": {
"mocha": "~1.18.1",
"chai": "~1.9.0",
"testling": "^1.6.1",
"istanbul": "^0.2.7",
"browserify": "https://github.com/substack/node-browserify/tarball/master"
}
}