git+https on package dependency (#881)

why git+https?  this creates conflicts in systems  without the proper helper (i.e. Debian 8) 

$ git clone git+https://github.com/debris/bignumber.js.git
Cloning into 'bignumber.js'...
fatal: Unable to find remote helper for 'git+https'
$ git clone https://github.com/debris/bignumber.js.git
Cloning into 'bignumber.js'...
remote: Counting objects: 468, done.
^Cceiving objects:  22% (103/468), 372.00 KiB | 168.00 KiB/s
This commit is contained in:
Nico Cesar 2017-06-05 14:34:31 -04:00 committed by Fabian Vogelsteller
parent 4f22d6e2bd
commit dbefa39e52
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@
"lib": "./lib"
},
"dependencies": {
"bignumber.js": "git+https://github.com/debris/bignumber.js.git#94d7146671b9719e00a09c29b01a691bc85048c2",
"bignumber.js": "https://github.com/debris/bignumber.js.git#94d7146671b9719e00a09c29b01a691bc85048c2",
"crypto-js": "^3.1.4",
"utf8": "^2.1.1",
"xhr2": "*",