-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
executable file
·33 lines (32 loc) · 1.27 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
{
"name" : "orientdb",
"description" : "A node.js driver for OrientDB",
"keywords" : ["orientdb", "orient", "driver", "db", "node", "node.js"],
"version" : "1.4.0-alpha.1",
"author" : "Gabriel Petrovay <gabipetrovay@gmail.com>",
"contributors" : [
{ "name": "Ryan Fields", "email": "ryan.fields@twoleftbeats.com" },
{ "name": "Federico Fissore", "email": "federico@fissore.org" },
{ "name": "Navin Parray", "email": "navinparray@gmail.com" }
],
"repository" : {
"type" : "git",
"url" : "http://github.com/gabipetrovay/node-orientdb.git" },
"dependencies" : {
"lodash" : "*"
},
"devDependencies" : {
"tap" : "0.4",
"async" : "*"
},
"main" : "./lib/orientdb/index",
"directories" : { "lib" : "./lib/orientdb" },
"engines" : { "node" : ">=0.6.0" },
"scripts" : {
"test" : "node ./node_modules/tap/bin/tap.js ./test/errors/test_* ./test/parser/test_* ./test/test_*"
},
"licenses" : [ {
"type" : "Apache License, Version 2.0",
"url" : "http://www.apache.org/licenses/LICENSE-2.0"
} ]
}