forked from inolen/gremlin-node
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 1.33 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
{
"name": "gremlin-v3",
"description": "Gremlin for graph databases which implement the TinkerPop3 property graph data model.",
"version": "0.0.24",
"keywords": [
"gremlin",
"tinkerpop3",
"graph",
"database",
"tinkerpop",
"blueprints"
],
"homepage": "https://github.com/jimlloyd/gremlin-v3",
"license": "MIT",
"authors": [
{
"name": "Jim Lloyd",
"email": "[email protected]"
},
{
"name": "Matt Frantz",
"email": "[email protected]"
},
{
"name": "Anthony Pesch",
"email": "[email protected]"
},
{
"name": "Frank Panetta",
"email": "[email protected]"
}
],
"contributors": [
{
"name": "Jared Camins"
}
],
"repository": {
"type": "git",
"url": "https://github.com/jimlloyd/gremlin-v3.git"
},
"main": "lib/gremlin.js",
"readmeFilename": "README.md",
"scripts": {
"test": "make test",
"install": "make package"
},
"engines": {
"node": ">=0.10.0"
},
"dependencies": {
"debug": "^2.1.1",
"glob": "~4.3.5",
"java": ">=0.4.6",
"json-stable-stringify": "^1.0.0",
"lodash": "^3.2.0",
"q": "^1.1.2"
},
"devDependencies": {
"jshint": "~2.6.0",
"mocha": "~2.1.0",
"optimist": "~0.6.1",
"sinon": "~1.12.2",
"tmp": "0.0.24"
}
}