forked from BitGo/BitGoJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 3.38 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
{
"name": "bitgo",
"version": "3.4.6",
"description": "BitGo Javascript SDK",
"main": "./src/index.js",
"keywords": [
"bitgo",
"bitcoin",
"bitgojs"
],
"repository": {
"type": "git",
"url": "https://github.com/BitGo/BitGoJS.git"
},
"engines": {
"node": ">=6.9.0",
"npm": ">=3.10.0"
},
"devDependencies": {
"babelify": "7.3.0",
"browserify": "13.1.0",
"coveralls": "~2.13.1",
"envify": "~3.4.0",
"istanbul": "0.4.5",
"karma": "~0.13.22",
"karma-chrome-launcher": "~0.1.7",
"karma-mocha": "~0.1.10",
"mocha": "3.4.2",
"mocha-lcov-reporter": "0.0.2",
"nock": "^9.0.13",
"should": "3.3.2",
"supertest": "~3.0.0",
"supertest-as-promised": "https://github.com/BitGo/supertest-as-promised/archive/a7f4b612b9fa090ae33a9616c41862aec2b25c7e.tar.gz",
"uglify-js": "3.0.15",
"uglifyify": "~3.0.4"
},
"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 15000 --reporter list test/*.js",
"coveralls": "sleep 300; ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- --timeout 50000 -R spec test/*.js test/bitcoin/*.js && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"babelify": "mkdir -p browser && ./node_modules/.bin/browserify ./src/index.js --exclude superagent-proxy --exclude morgan -t babelify -s BitGoJS -o browser/BitGoJS-babelify.js",
"compile": "mkdir -p browser && ./node_modules/.bin/browserify ./src/index.js --exclude superagent-proxy --exclude morgan -s BitGoJS -g uglifyify -o browser/BitGoJS-min.js",
"compile-dbg": "mkdir -p browser && ./node_modules/.bin/browserify ./src/index.js --exclude superagent-proxy --exclude morgan -s BitGoJS -o browser/BitGoJS.js",
"compile-test": "mkdir -p browser && ./node_modules/.bin/browserify --exclude superagent-proxy --exclude morgan -t envify ./test/*.js > ./browser/tests.js",
"test": "npm run test-node",
"express": "node bin/bitgo-express -b 0.0.0.0",
"test-node": "./node_modules/.bin/istanbul test ./node_modules/.bin/_mocha -- --timeout 20000 --reporter list --recursive test/",
"test-browser": "npm run compile-test && ./node_modules/karma/bin/karma start .karma.conf.js --log-level debug --single-run"
},
"dependencies": {
"argparse": "~0.1.16",
"assert": "0.4.9",
"big.js": "~3.1.3",
"bigi": "1.4.0",
"bignumber.js": "~4.0.2",
"bitcoinjs-lib": "2.1.4",
"body-parser": "~1.17.2",
"bs58": "2.0.1",
"bs58check": "1.0.4",
"create-hmac": "~1.1.4",
"ecurve": "~1.0.2",
"eol": "0.5.0",
"express": "~4.15.3",
"http-proxy": "1.11.1",
"lodash": "4.13.1",
"minimist": "0.2.0",
"moment": "~2.18.1",
"morgan": "1.5.3",
"prova-lib": "~0.2.6",
"q": "1.1.2",
"ripple-lib": "~0.17.7",
"sanitize-html": "1.13.0",
"superagent": "~3.5.2",
"superagent-proxy": "~1.0.0",
"underscore.string": "2.4.0"
},
"optionalDependencies": {
"ethereumjs-abi": "~0.6.2",
"ethereumjs-util": "~4.4.1",
"secp256k1": "3.2.5"
}
}