mirror of
https://github.com/BradNut/graphbrainz
synced 2025-09-08 17:40:32 +00:00
Update dependencies to enable Greenkeeper 🌴 (#20)
* chore(package): update dependencies https://greenkeeper.io/ * chore(travis): whitelist greenkeeper branches https://greenkeeper.io/ * docs(readme): add Greenkeeper badge https://greenkeeper.io/ * Update yarn.lock, fix badges
This commit is contained in:
parent
64c624c574
commit
fc53b15455
5 changed files with 424 additions and 329 deletions
|
|
@ -12,6 +12,7 @@ sudo: false
|
||||||
branches:
|
branches:
|
||||||
only:
|
only:
|
||||||
- master
|
- master
|
||||||
|
- /^greenkeeper/.*$/
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- yarn test
|
- yarn test
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,8 @@
|
||||||
# GraphBrainz
|
# GraphBrainz
|
||||||
|
|
||||||
[](https://travis-ci.org/exogen/graphbrainz)
|
[](https://travis-ci.org/exogen/graphbrainz)
|
||||||
[](https://codecov.io/gh/exogen/graphbrainz)
|
[](https://codecov.io/gh/exogen/graphbrainz)
|
||||||
|
[](https://greenkeeper.io/)
|
||||||
[](https://www.npmjs.com/package/graphbrainz)
|
[](https://www.npmjs.com/package/graphbrainz)
|
||||||
[](https://github.com/exogen/graphbrainz/blob/master/LICENSE)
|
[](https://github.com/exogen/graphbrainz/blob/master/LICENSE)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -80,7 +80,7 @@
|
||||||
"retry": "^0.10.1"
|
"retry": "^0.10.1"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"ava": "^0.18.2",
|
"ava": "^0.19.0",
|
||||||
"babel-cli": "^6.24.0",
|
"babel-cli": "^6.24.0",
|
||||||
"babel-eslint": "^7.2.1",
|
"babel-eslint": "^7.2.1",
|
||||||
"babel-plugin-istanbul": "^4.1.1",
|
"babel-plugin-istanbul": "^4.1.1",
|
||||||
|
|
@ -91,14 +91,14 @@
|
||||||
"coveralls": "^2.13.0",
|
"coveralls": "^2.13.0",
|
||||||
"cross-env": "^4.0.0",
|
"cross-env": "^4.0.0",
|
||||||
"doctoc": "^1.3.0",
|
"doctoc": "^1.3.0",
|
||||||
"graphql-markdown": "^2.0.0",
|
"graphql-markdown": "^2.0.1",
|
||||||
"nodemon": "^1.11.0",
|
"nodemon": "^1.11.0",
|
||||||
"nyc": "^10.2.0",
|
"nyc": "^10.2.0",
|
||||||
"rimraf": "^2.6.1",
|
"rimraf": "^2.6.1",
|
||||||
"sepia": "^2.0.2",
|
"sepia": "^2.0.2",
|
||||||
"sinon": "^2.1.0",
|
"sinon": "^2.1.0",
|
||||||
"snazzy": "^6.0.0",
|
"snazzy": "^6.0.0",
|
||||||
"standard": "^9.0.2"
|
"standard": "^10.0.0"
|
||||||
},
|
},
|
||||||
"standard": {
|
"standard": {
|
||||||
"parser": "babel-eslint"
|
"parser": "babel-eslint"
|
||||||
|
|
|
||||||
|
|
@ -60,7 +60,7 @@ test('shouldRetry() retries only transient local connection issues', t => {
|
||||||
|
|
||||||
test('rejects non-MusicBrainz errors', t => {
|
test('rejects non-MusicBrainz errors', t => {
|
||||||
const client = new MusicBrainz({ baseURL: '$!@#$' })
|
const client = new MusicBrainz({ baseURL: '$!@#$' })
|
||||||
t.throws(client.get('artist/5b11f4ce-a62d-471e-81fc-a69a8278c7da'), Error)
|
return t.throws(client.get('artist/5b11f4ce-a62d-471e-81fc-a69a8278c7da'), Error)
|
||||||
})
|
})
|
||||||
|
|
||||||
test('uses the default error impementation if there is no JSON error', t => {
|
test('uses the default error impementation if there is no JSON error', t => {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue