-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
49 lines (49 loc) · 1.03 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
{
"name": "node-cassandra-cql",
"version": "0.5.0",
"description": "Node.js driver for Apache Cassandra",
"author": "Jorge Bay <[email protected]>",
"contributors" :[
"Andrew Kish",
"Tommy Messbauer",
"Adam Faulkner",
"Adrian Pike",
"Suguru Namura",
"Jan Schmidle",
"Sam Grönblom",
"Daniel Smedegaard Buus",
"Bryce Baril"
],
"keywords": [
"cassandra",
"cql",
"cql3",
"connection",
"pool"
],
"licenses": [
{
"type": "MIT",
"url": "https://github.com/jorgebay/node-cassandra-cql/raw/master/LICENSE.txt"
}
],
"dependencies": {
"async": ">= 0.2.5",
"long": ">= 1.1.2",
"node-uuid": "1.4.0"
},
"devDependencies": {
"mocha": ">= 1.14.0"
},
"repository": {
"type" : "git",
"url" : "https://github.com/jorgebay/node-cassandra-cql.git"
},
"bugs": {
"url" : "https://github.com/jorgebay/node-cassandra-cql/issues"
},
"engines": {"node" : ">=0.10.0"},
"scripts": {
"test": "mocha test -R spec -t 5000"
}
}