鲍尔呼叫由公司代理封锁,然后在更新.bowerrc时出现错误

我试图通过npm安装bower来设置angular度种子项目,但是遇到了由我的公司代理引起的错误。

retry Request to https://bower.herokuapp.com/packages/angular failed with ECONNRESET, retrying in 1.2s bower retry Request to https://bower.herokuapp.com/packages/angular-route failed with ECONNRESET, retrying in 1.4s bower retry Request to https://bower.herokuapp.com/packages/angular-loader failed with ECONNRESET, retrying in 1.9s bower retry Request to https://bower.herokuapp.com/packages/angular-mocks failed with ECONNRESET, retrying in 1.3s bower retry Request to https://bower.herokuapp.com/packages/html5-boilerplate failed with ECONNRESET, retrying in 1.8s bower retry Request to https://bower.herokuapp.com/packages/angular failed with ECONNRESET, retrying in 2.7s 

我试图按照我在另一个堆栈溢出post中看到的build议来编辑我的.bowerrc文件来添加有关代理的详细信息。 但是,一旦我这样做,我得到这个错误:

 /Users/t821714/Projects/customer/customer/node_modules/bower/node_modules/bower-config/lib/util/rc.js:56 throw error; ^ Error: Unable to parse /Users/t821714/Projects/customer/customer/.bowerrc: Unexpected token p 

更新的.bowerrc如下所示:

 { "directory": "app/bower_components", "registry": "http://bower.herokuapp.com", "proxy":"http://<USERNAME>:<PASSWORD>@<PROXY_IP>:<PROXY_PORT>/", "https-proxy":"http://<USERNAME>:<PASSWORD>@<PROXY_IP>:<PROXY_PORT>/", } 

任何人都可以build议什么是我的.bowerrc更新错? 或者build议一个更好的方法来解决这个问题?

尝试添加我在这个旧的github线程上find的以下属性

 { "directory": "app/bower_components", "registry": "http://bower.herokuapp.com", "proxy":"http://<USERNAME>:<PASSWORD>@<PROXY_IP>:<PROXY_PORT>/", "https-proxy":"http://<USERNAME>:<PASSWORD>@<PROXY_IP>:<PROXY_PORT>/", "strict-ssl": false }