forked from gabipetrovay/node-orientdb
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·29 lines (28 loc) · 1.14 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
{
"name" : "orientdb",
"description" : "A node.js driver for OrientDB",
"keywords" : ["orientdb", "orient", "driver", "db", "node", "node.js"],
"version" : "0.8.0",
"author" : "Gabriel Petrovay <[email protected]>",
"contributors" : [
{ "name": "Ryan Fields", "email": "[email protected]" },
{ "name": "Federico Fissore", "email": "[email protected]" },
{ "name": "Navin Parray", "email": "[email protected]" }
],
"repository" : {
"type" : "git",
"url" : "http://github.com/gabipetrovay/node-orientdb.git" },
"devDependencies" : {
"tap" : "0.2.3"
},
"main" : "./lib/orientdb/index",
"directories" : { "lib" : "./lib/orientdb" },
"engines" : { "node" : ">=0.6.0" },
"scripts" : {
"test" : "node ./node_modules/tap/bin/tap.js ./test"
},
"licenses" : [ {
"type" : "Apache License, Version 2.0",
"url" : "http://www.apache.org/licenses/LICENSE-2.0"
} ]
}