-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
64 lines (64 loc) · 1.36 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
{
"name": "gremlin-importer",
"version": "0.0.1",
"description": "A command line tool for importing graph files into a gremlin-enabled server.",
"homepage": "",
"author": {
"name": "victor Santos Uceta",
"email": "victor.uceta@gmail.com",
"url": ""
},
"files": [
"lib"
],
"main": "lib/index.js",
"keywords": [
"gremlin",
"graph",
"import",
"command line",
"cli",
"csv",
"gexf",
"graphson",
"dot"
],
"devDependencies": {
"eslint-config-xo-space": "^0.7.0",
"gulp": "^3.9.0",
"gulp-eslint": "^1.0.0",
"gulp-exclude-gitignore": "^1.0.0",
"gulp-istanbul": "^0.10.3",
"gulp-mocha": "^2.0.0",
"gulp-plumber": "^1.0.0",
"gulp-nsp": "^2.1.0"
},
"eslintConfig": {
"extends": "xo-space",
"env": {
"mocha": true
}
},
"repository": "git@github.com:mastayoda/gremlin-importer.git",
"scripts": {
"prepublish": "gulp prepublish",
"test": "gulp"
},
"license": "MIT",
"bin": {
"gremlin-importer": "lib/cli-index.js"
},
"dependencies": {
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-2": "^6.5.0",
"babel-register": "^6.7.2",
"commander": "^2.9.0",
"fast-csv": "^1.0.0",
"gexf": "^0.2.5",
"graphlib-dot": "^0.6.2",
"gremlin": "^2.1.0",
"moment": "^2.11.2",
"progress": "^1.1.8",
"string": "^3.3.1"
}
}