forked from levelgraph/levelgraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "levelgraph",
"version": "0.10.2",
"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",
"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/mcollina/levelgraph.git"
},
"bugs": {
"url": "http://github.com/mcollina/levelgraph/issues"
},
"pre-commit": [
"jshint-lib",
"jshint-test",
"test"
],
"keywords": [
"leveldb",
"graph",
"level",
"database",
"triples",
"triple"
],
"engines": {
"node": "0.10"
},
"author": "Matteo Collina <[email protected]>",
"license": "MIT",
"devDependencies": {
"browserify": "~6.1.0",
"chai": "^1.9.2",
"coveralls": "^2.11.2",
"istanbul": "~0.3.2",
"jshint": "~2.5.6",
"level-subkey": "^7.7.1",
"level-sublevel": "^6.3.15",
"level-test": "~1.6.5",
"levelup": "~0.19.0",
"mocha": "^1.16.2",
"osenv": "^0.1.0",
"pre-commit": "0.0.9",
"setimmediate": "^1.0.2",
"sinon": "~1.10.3",
"sinon-chai": "^2.6.0",
"uglify-js": "~2.4.8",
"zuul": "^1.11.2"
},
"dependencies": {
"xtend": "~4.0.0",
"callback-stream": "~1.0.0",
"async": "~0.9.0",
"readable-stream": "~1.0.17",
"level-write-stream": "~1.0.0",
"levelup": ">= 0.10.0 < 0.20.0",
"leveldown": "> 0.7.0 < 0.11.0",
"level-js": "~2.1.6"
},
"browser": {
"./lib/getdb.js": "./lib/getdb-browser.js"
},
"testling": {
"browsers": [
"ie/latest",
"firefox/latest",
"chrome/latest",
"opera/latest"
],
"harness": "mocha",
"files": "test/*.js"
}
}