Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bumped deps and added node 8. #23

Merged
merged 2 commits into from
Jun 4, 2017
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 @@ -20,3 +20,4 @@ coverage/
bower_components

db/
package-lock.json
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ node_js:
- "4"
- "6"
- "7"
- "8"
script:
- npm run coverage
- npm run publish-coverage
Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
LevelGraph-N3
===========

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

__LevelGraph-N3__ 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, fetch and process N3 and turtle files.

## Install
Expand All @@ -35,7 +35,7 @@ var level = require('level'),

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)


## Usage
Expand Down Expand Up @@ -112,7 +112,7 @@ stream.on("end", done);
__LevelGraph-N3__ allows to export ntriples from a __LevelGraph__ database.
__LevelGraph-N3__ augments the a standard `search` method with a `{ n3: ... }` option
that specifies the subject, predicate and object of the created triples.
It follows the same structure of the `{ materialized: ... }` option (see https://github.com/mcollina/levelgraph#searches).
It follows the same structure of the `{ materialized: ... }` option (see https://github.com/levelgraph/levelgraph#searches).

Here is an example:
```js
Expand All @@ -135,7 +135,7 @@ It also supported by the `searchStream` method.

## Changes

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


Expand Down
34 changes: 17 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
},
"repository": {
"type": "git",
"url": "https://github.com/mcollina/levelgraph-n3.git"
"url": "https://github.com/levelgraph/levelgraph-n3.git"
},
"bugs": {
"url": "http://github.com/mcollina/levelgraph-n3/issues"
"url": "http://github.com/levelgraph/levelgraph-n3/issues"
},
"keywords": [
"levelgraph",
Expand All @@ -30,28 +30,28 @@
"author": "Matteo Collina <[email protected]>",
"license": "MIT",
"dependencies": {
"cli": "^1.0.0",
"concat-stream": "^1.5.1",
"end-of-stream": "^1.1.0",
"glob": "^7.0.5",
"level": "^1.1.0",
"cli": "^1.0.1",
"concat-stream": "^1.6.0",
"end-of-stream": "^1.4.0",
"glob": "^7.1.2",
"level": "^1.7.0",
"mkdirp": "^0.5.0",
"n3": "^0.6.0",
"progress-stream": "^1.0.1",
"readable-stream": "^2.1.4"
"n3": "^0.10.0",
"progress-stream": "^2.0.0",
"readable-stream": "^2.2.10"
},
"peerDependencies": {
"levelgraph": "^2.0.0"
},
"devDependencies": {
"mocha": "^3.0.0",
"levelgraph": "^2.0.0",
"memdb": "^1.3.1",
"browserify": "^14.3.0",
"chai": "^3.5.0",
"coveralls": "^2.11.2",
"coveralls": "^2.13.1",
"istanbul": "^0.4.4",
"zuul": "^3.10.0",
"browserify": "^13.0.1",
"uglify-js": "^2.7.0"
"levelgraph": "^2.0.0",
"memdb": "^1.3.1",
"mocha": "^3.4.2",
"uglify-js": "^3.0.15",
"zuul": "^3.11.1"
}
}