-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.13 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
{
"name": "gremlin-repl",
"version": "0.0.0",
"description": "A repl for gremlin",
"bin": "./bin/gremlin-repl.js",
"scripts": {
"test": "make"
},
"keywords": [
"gremlin",
"repl",
"graphdb"
],
"author": "Jim Lloyd",
"license": "ISC",
"dependencies": {
"debug": "2.0.0",
"gremlin": "^0.4.0",
"json-stable-stringify": "git://github.com/jimlloyd/json-stable-stringify.git",
"lodash": "^2.4.1",
"repl-promise": "^0.0.5"
},
"directories": {
"test": "test"
},
"devDependencies": {
"chai": "^1.9.1",
"chai-as-promised": "^4.1.1",
"concat-stream": "^1.4.6",
"from": "^0.1.3",
"jshint": "^2.5.7",
"mocha": "^1.21.5",
"q": "^1.0.1",
"semaphore": "^1.0.1"
},
"repository": {
"type": "git",
"url": "[email protected]:jimlloyd/gremlin-repl.git"
},
"bugs": {
"url": "https://github.com/jimlloyd/gremlin-repl/issues"
},
"homepage": "https://github.com/jimlloyd/gremlin-repl",
"jshintConfig": {
"node": true,
"globalstrict": false,
"indent": 2,
"globals": {
"expect": true,
"describe": true,
"it": true
}
}
}