forked from datastax/nodejs-driver
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1022 Bytes
/
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
{
"name": "cassandra-driver",
"version": "3.0.1",
"description": "DataStax Node.js Driver for Apache Cassandra",
"author": "DataStax",
"keywords": [
"cassandra",
"cql",
"cql3",
"connection",
"pool",
"datastax",
"nosql",
"driver",
"database"
],
"licenses": [
{
"type": "Apache License, Version 2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"dependencies": {
"async": "^1.5.0",
"long": "^2.2.0"
},
"devDependencies": {
"mocha": ">= 1.14.0",
"rewire": ">= 2.1.0",
"mocha-jenkins-reporter": ">= 0.1.9"
},
"repository": {
"type" : "git",
"url" : "https://github.com/datastax/nodejs-driver.git"
},
"bugs": {
"url": "https://groups.google.com/a/lists.datastax.com/forum/#!forum/nodejs-driver-user"
},
"scripts": {
"test": "mocha test/unit -R spec -t 5000",
"ci": "mocha test/unit test/integration/short -R mocha-jenkins-reporter"
},
"engines": {
"node" : ">=0.10.0"
}
}