Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,4 @@ npm-debug.log
docs
.DS_Store
coverage/
package-lock.json
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ node_js:
- "5"
- "6"
- "7"
- "8"
script:
- npm run coverage
- test $SAUCE_USERNAME && npm run zuul || echo 'not running on saucelabs'
Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
LevelGraph-JSONLD
===========

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

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

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

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

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

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


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

## LICENSE - "MIT License"

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

Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,22 +36,22 @@
"async": "^2.1.4",
"jsonld": "0.4.9",
"memdb": "^1.3.1",
"n3": "iilab/N3.js#fix/object-is-not-IRI",
"n3": "^0.10.0",
"uuid": "^3.0.1"
},
"peerDependencies": {
"levelgraph": "^2.0.0"
},
"devDependencies": {
"browserify": "^13.3.0",
"browserify": "^14.0.0",
"chai": "~3.5.0",
"coveralls": "~2.11.8",
"istanbul": "~0.4.2",
"coveralls": "^2.11.8",
"istanbul": "^0.4.2",
"leveldown": "^1.5.3",
"levelgraph": "^2.0.0",
"lodash": "^4.17.4",
"mocha": "^3.2.0",
"uglify-js": "^2.7.5",
"uglify-js": "^3.0.0",
"zuul": "^3.11.1"
}
}