forked from BitGo/BitGoJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.68 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
{
"name": "BitGoJS",
"version": "0.1.0",
"description": "BitGo Javascript SDK",
"main": "./src/index.js",
"keywords": [
],
"repository": {
"type": "git",
"url": "https://github.com/BitGo/BitGoJS.git"
},
"devDependencies": {
"browserify": "~4.1.5",
"chain-node": "*",
"coveralls": "~2.10.0",
"istanbul": "0.1.30",
"minimist": "0.2.0",
"mocha": "1.18.2",
"mocha-lcov-reporter": "0.0.1",
"should": "3.3.2",
"thirty-two": "0.0.1",
"uglify-js": "2.4.13"
},
"testling": {
"browsers": [
"chrome/latest",
"firefox/latest",
"safari/latest",
"opera/latest",
"iphone/latest",
"ipad/latest",
"android-browser/4.2..latest"
],
"harness": "mocha",
"files": [ "test/*.js", "test/bitcoin/*.js" ]
},
"scripts": {
"coverage": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- --timeout 10000 --reporter list test/*.js test/bitcoin/*.js",
"coveralls": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- --timeout 10000 -R spec test/*.js test/bitcoin/*.js && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"compile": "./node_modules/.bin/browserify ./src/index.js -s Bitcoin | ./node_modules/.bin/uglifyjs > BitGoJS-min.js",
"compile-dbg": "./node_modules/.bin/browserify ./src/index.js -s Bitcoin | ./node_modules/.bin/uglifyjs --beautify > BitGoJS.js",
"test": "npm run-script unit",
"unit": "./node_modules/.bin/istanbul test ./node_modules/.bin/_mocha -- --timeout 10000 --reporter list test/*.js test/bitcoin/*.js"
},
"dependencies": {
"superagent": "0.18.0",
"q": "1.0.1"
}
}