Skip to content

Commit a55a421

Browse files
authored
Merge pull request #65 from levelgraph/updated-deps
bumped deps and added node 8
2 parents 514172e + aab1937 commit a55a421

4 files changed

Lines changed: 15 additions & 13 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,4 @@ npm-debug.log
1717
docs
1818
.DS_Store
1919
coverage/
20+
package-lock.json

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ node_js:
44
- "5"
55
- "6"
66
- "7"
7+
- "8"
78
script:
89
- npm run coverage
910
- test $SAUCE_USERNAME && npm run zuul || echo 'not running on saucelabs'

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
LevelGraph-JSONLD
22
===========
33

4-
![Logo](https://github.com/mcollina/node-levelgraph/raw/master/logo.png)
4+
![Logo](https://github.com/levelgraph/node-levelgraph/raw/master/logo.png)
55

6-
[![Build Status](https://travis-ci.org/mcollina/levelgraph-jsonld.png)](https://travis-ci.org/mcollina/levelgraph-jsonld)
7-
[![Coverage Status](https://coveralls.io/repos/mcollina/levelgraph-jsonld/badge.png)](https://coveralls.io/r/mcollina/levelgraph-jsonld)
8-
[![Dependency Status](https://david-dm.org/mcollina/levelgraph-jsonld.png?theme=shields.io)](https://david-dm.org/mcollina/levelgraph-jsonld)
6+
[![Build Status](https://travis-ci.org/levelgraph/levelgraph-jsonld.png)](https://travis-ci.org/levelgraph/levelgraph-jsonld)
7+
[![Coverage Status](https://coveralls.io/repos/levelgraph/levelgraph-jsonld/badge.png)](https://coveralls.io/r/levelgraph/levelgraph-jsonld)
8+
[![Dependency Status](https://david-dm.org/levelgraph/levelgraph-jsonld.png?theme=shields.io)](https://david-dm.org/levelgraph/levelgraph-jsonld)
99
[![Sauce Labs Tests](https://saucelabs.com/browser-matrix/levelgraph-jsonld.svg)](https://saucelabs.com/u/levelgraph-jsonld)
1010

1111
__LevelGraph-JSONLD__ is a plugin for
12-
[LevelGraph](http://github.com/mcollina/levelgraph) that adds the
12+
[LevelGraph](http://github.com/levelgraph/levelgraph) that adds the
1313
ability to store, retrieve and delete JSON-LD objects.
1414
In fact, it is a full-blown Object-Document-Mapper (ODM) for
1515
__LevelGraph__.
@@ -39,7 +39,7 @@ If you need it, just open a pull request.
3939

4040
If you use [browserify](http://browserify.org/) you can use this package
4141
in a browser just as in node.js. Please also take a look at [Browserify
42-
section in LevelGraph package](https://github.com/mcollina/levelgraph#browserify)
42+
section in LevelGraph package](https://github.com/levelgraph/levelgraph#browserify)
4343

4444
You can also use standalone browserified version from `./build`
4545
directory or use [bower](http://bower.io)
@@ -289,7 +289,7 @@ db.jsonld.put(manu, function(){
289289
```
290290
## Changes
291291

292-
[CHANGELOG.md](https://github.com/mcollina/levelgraph-jsonld/blob/master/CHANGELOG.md)
292+
[CHANGELOG.md](https://github.com/levelgraph/levelgraph-jsonld/blob/master/CHANGELOG.md)
293293
**including migration info for breaking changes**
294294

295295

@@ -311,7 +311,7 @@ db.jsonld.put(manu, function(){
311311

312312
## LICENSE - "MIT License"
313313

314-
Copyright (c) 2013 Matteo Collina (http://matteocollina.com)
314+
Copyright (c) 2013-2017 Matteo Collina and LevelGraph-JSONLD contributors
315315

316316
Permission is hereby granted, free of charge, to any person
317317
obtaining a copy of this software and associated documentation

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,22 +36,22 @@
3636
"async": "^2.1.4",
3737
"jsonld": "0.4.9",
3838
"memdb": "^1.3.1",
39-
"n3": "iilab/N3.js#fix/object-is-not-IRI",
39+
"n3": "^0.10.0",
4040
"uuid": "^3.0.1"
4141
},
4242
"peerDependencies": {
4343
"levelgraph": "^2.0.0"
4444
},
4545
"devDependencies": {
46-
"browserify": "^13.3.0",
46+
"browserify": "^14.0.0",
4747
"chai": "~3.5.0",
48-
"coveralls": "~2.11.8",
49-
"istanbul": "~0.4.2",
48+
"coveralls": "^2.11.8",
49+
"istanbul": "^0.4.2",
5050
"leveldown": "^1.5.3",
5151
"levelgraph": "^2.0.0",
5252
"lodash": "^4.17.4",
5353
"mocha": "^3.2.0",
54-
"uglify-js": "^2.7.5",
54+
"uglify-js": "^3.0.0",
5555
"zuul": "^3.11.1"
5656
}
5757
}

0 commit comments

Comments
 (0)