-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
42 lines (42 loc) · 1.11 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
{
"name": "hyper-graph-db",
"version": "0.3.5",
"description": "A distributed graph database built upon hyperdb.",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/e-e-e/hyper-graph-db.git"
},
"bugs": {
"url": "https://github.com/e-e-e/hyper-graph-db/issues"
},
"dependencies": {
"hyperdb": "^3.5.0",
"inherits": "^2.0.3",
"lru": "^3.1.0",
"pump": "^3.0.0",
"readable-stream": "^3.0.1",
"sparql-iterator": "^2.0.5",
"thunky": "^1.0.2"
},
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"istanbul": "^0.4.5",
"mocha": "^5.0.0",
"n3": "^0.8.5",
"random-access-memory": "^3.0.0",
"standard": "^12.0.0",
"tmp": "0.0.33"
},
"scripts": {
"test": "mocha test/**.spec.js",
"tdd": "mocha test/**.spec.js -w",
"lint": "standard",
"lint:fix": "standard --fix",
"travis": "NODE_ENV=test istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec",
"report-coverage": "cat ./coverage/lcov.info | coveralls"
},
"author": "Benjamin Forster",
"license": "MIT"
}