-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
57 lines (57 loc) · 1.24 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
{
"name": "hexastore",
"version": "0.1.5",
"description": "A fast, pure javascript triple store implementation, also useful as a graph database",
"main": "index.js",
"scripts": {
"test": "gulp test",
"coveralls": "gulp coveralls"
},
"repository": {
"type": "git",
"url": "git://github.com/crubier/hexastore.git"
},
"engines": {
"node": ">=0.10.0 ",
"npm": "~2.0.0"
},
"files": [
"index.js",
"package.json",
"readme.md",
"changelog.md"
],
"keywords": [
"hexastore",
"rdf",
"graph",
"database",
"json",
"triple",
"triplestore",
"pure",
"js"
],
"author": "Vincent Lecrubier <[email protected]> (http://www.vincentlecrubier.fr/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/crubier/hexastore/issues"
},
"homepage": "https://github.com/crubier/hexastore",
"dependencies": {
"adm-zip": "^0.4.4",
"node-uuid": "^1.4.2"
},
"devDependencies": {
"chai": "^1.10.0",
"chai-fuzzy": "^1.4.0",
"del": "^1.1.1",
"gulp": "^3.8.10",
"gulp-coveralls": "^0.1.3",
"gulp-istanbul": "^0.5.0",
"gulp-log-capture": "0.0.6",
"gulp-mocha": "^2.0.0",
"mocha": "^2.1.0",
"underscore": "^1.7.0"
}
}