forked from levelgraph/levelgraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.79 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "levelgraph",
"version": "2.1.1",
"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 <[email protected]>",
"license": "MIT",
"devDependencies": {
"browserify": "^14.0.1",
"chai": "^3.0.0",
"coveralls": "^2.13.1",
"istanbul": "^0.4.3",
"jshint": "^2.9.2",
"level-browserify": "^1.1.1",
"level-sublevel": "^6.4.6",
"memdb": "^1.3.1",
"mocha": "^3.4.2",
"multilevel": "^7.2.0",
"osenv": "^0.1.0",
"pre-commit": "^1.1.3",
"setimmediate": "^1.0.2",
"sinon": "^2.3.2",
"sinon-chai": "^2.10.0",
"tmp": "0.0.33",
"uglify-js": "^3.0.15",
"zuul": "^3.0.0"
},
"dependencies": {
"callback-stream": "^1.1.0",
"inherits": "^2.0.1",
"level-ws": "^0.1.0",
"lodash.keys": "^4.0.6",
"pump": "^1.0.1",
"readable-stream": "^2.2.10",
"steed": "^1.1.3",
"xtend": "^4.0.0"
}
}