-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
60 lines (60 loc) · 1.19 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
{
"name": "gremlin",
"description": "Gremlin for graph databases which implement the Blueprints property graph data model.",
"version": "0.4.0",
"keywords": [
"graph",
"database",
"tinkerpop",
"gremlin",
"blueprints"
],
"homepage": "https://github.com/inolen/gremlin-node",
"license": "MIT",
"authors": [
{
"name": "Frank Panetta",
"email": "[email protected]"
},
{
"name": "Anthony Pesch",
"email": "[email protected]"
},
{
"name": "Jim Lloyd",
"email": "[email protected]"
}
],
"contributors": [
{
"name": "Jared Camins"
}
],
"repository": {
"type": "git",
"url": "https://github.com/inolen/gremlin-node.git"
},
"main": "lib/gremlin.js",
"readmeFilename": "README.md",
"scripts": {
"test": "make test",
"install": "make package"
},
"engines": {
"node": ">=0.10.0"
},
"dependencies": {
"debug": "^2.0.0",
"glob": "~3.2.6",
"java": ">=0.2.8",
"q": "^1.0.1",
"underscore": "~1.5.2"
},
"devDependencies": {
"jshint": "~2.3.0",
"mocha": "~1.14.0",
"optimist": "~0.6.0",
"sinon": "~1.7.3",
"tmp": "0.0.24"
}
}