forked from gremlin-orm/gremlin-orm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.6 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.6 KB
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
67
68
69
70
71
72
73
74
{
"name": "gremlin-orm",
"version": "1.1.6",
"description": "Gremlin ORM for Node.js",
"main": "dist/gremlin-orm.js",
"scripts": {
"test": "npm run build; mocha -t 10000 test/index.js test/helpers.js test/vertex.js test/edge.js test/model.js --exit",
"build": "babel src --presets babel-preset-es2015 --out-dir dist",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gremlin-orm/gremlin-orm.git"
},
"keywords": [
"orm",
"gremlin",
"query",
"graph",
"graph database",
"neo4j",
"azure",
"cosmos",
"db"
],
"author": {
"email": "gremlin.orm@gmail.com",
"name": "gremlin-orm"
},
"bugs": {
"url": "https://github.com/gremlin-orm/gremlin-orm/issues"
},
"contributors": [
{
"email": "f@frmn.io",
"name": "Freeman Chen"
},
{
"email": "godronus@gmail.com",
"name": "Gordon Farquharson"
},
{
"email": "jeremysanglee@gmail.com",
"name": "Jeremy Lee"
}
],
"license": "MIT",
"homepage": "https://github.com/gremlin-orm/gremlin-orm#readme",
"maintainers": [
{
"email": "f@frmn.io",
"name": "Freeman Chen"
},
{
"email": "godronus@gmail.com",
"name": "Gordon Farquharson"
},
{
"email": "jeremysanglee@gmail.com",
"name": "Jeremy Lee"
}
],
"dependencies": {
"gremlin": "^2.6.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"istanbul": "^0.4.5",
"mocha": "^4.0.1"
}
}