-
Notifications
You must be signed in to change notification settings - Fork 200
/
package.json
58 lines (58 loc) · 1.84 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
50
51
52
53
54
55
56
57
58
{
"name": "cassandra-driver",
"version": "4.7.2",
"description": "DataStax Node.js Driver for Apache Cassandra",
"author": "DataStax",
"keywords": [
"cassandra",
"cql",
"cql3",
"connection",
"gremlin",
"datastax",
"nosql",
"driver",
"database",
"dse",
"graph",
"graphdb"
],
"license": "Apache-2.0",
"types": "./index.d.ts",
"dependencies": {
"@types/long": "~5.0.0",
"@types/node": "^18.11.18",
"adm-zip": "~0.5.10",
"long": "~5.2.3"
},
"devDependencies": {
"chai": "~4.3.8",
"kerberos": "~2.0.3",
"mocha": "~10.2.0",
"mocha-jenkins-reporter": "~0.4.8",
"proxyquire": "~2.1.3",
"sinon": "~15.2.0",
"temp": ">= 0.8.3"
},
"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": "./node_modules/.bin/mocha test/unit -R spec -t 5000 --recursive",
"unit": "./node_modules/.bin/mocha test/unit -R spec -t 5000 --recursive",
"integration_short": "./node_modules/.bin/mocha test/integration/short -R spec -t 5000 --recursive",
"integration_long": "./node_modules/.bin/mocha test/integration/long -R spec -t 5000 --recursive",
"ci_jenkins": "./node_modules/.bin/mocha test/unit test/integration/short --recursive -R mocha-jenkins-reporter --exit",
"ci_appveyor": ".\\\"node_modules/.bin/mocha\" test/unit test/integration/short --recursive -R mocha-appveyor-reporter --exit",
"ci_unit_appveyor": ".\\\"node_modules/.bin/mocha\" test/unit --recursive -R mocha-appveyor-reporter --exit",
"server_api": "./node_modules/.bin/mocha test/integration/short -g '@SERVER_API' --recursive --exit",
"eslint": "eslint lib test"
},
"engines": {
"node": ">=16"
}
}