UNPKG

levelgraph

Version:

A graph database for Node.js and the browser built on top of LevelUp

69 lines (68 loc) 1.83 kB
{ "name": "levelgraph", "version": "4.0.0", "description": "A graph database for Node.js and the browser built on top of LevelUp", "main": "lib/levelgraph.js", "scripts": { "test": "mocha --recursive --bail --reporter spec test", "zuul": "zuul test/common.js test/*spec.js", "zuul-local": "zuul --open --local 8080 -- test/common.js test/*spec.js", "coverage": "rm -rf coverage; istanbul cover _mocha -- --recursive --reporter spec --bail", "publish-coverage": "cat coverage/lcov.info | coveralls", "ci": "mocha --recursive --bail --watch test", "jshint-lib": "jshint lib/*.js", "jshint-test": "jshint test/*/*.js" }, "repository": { "type": "git", "url": "https://github.com/levelgraph/levelgraph.git" }, "bugs": { "url": "http://github.com/levelgraph/levelgraph/issues" }, "pre-commit": [ "jshint-lib", "jshint-test", "test" ], "keywords": [ "leveldb", "graph", "level", "database", "triples", "triple" ], "author": "Matteo Collina <hello@matteocollina.com>", "license": "MIT", "devDependencies": { "browserify": "^17.0.0", "chai": "^4.3.4", "coveralls": "^3.1.1", "istanbul": "^0.4.5", "jshint": "^2.13.1", "level": "^8.0.0", "many-level": "^2.0.0", "memory-level": "^1.0.0", "mocha": "^10.0.0", "osenv": "^0.1.5", "pre-commit": "^1.2.2", "setimmediate": "^1.0.5", "sinon": "^14.0.0", "sinon-chai": "^3.7.0", "tmp": "^0.2.1", "uglify-js": "^3.14.1", "zuul": "^3.12.0" }, "dependencies": { "callback-stream": "^1.1.0", "inherits": "^2.0.4", "level-read-stream": "^1.1.0", "level-ws": "^4.0.0", "lodash.keys": "^4.2.0", "pump": "^3.0.0", "readable-stream": "^4.0.0", "steed": "^1.1.3", "xtend": "^4.0.2" } }