forked from azuqua/cassanknex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.25 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
{
"name": "cassanknex",
"version": "2.0.0",
"description": "An Apache Cassandra CQL query builder with support for the DataStax NodeJS driver, written in the spirit of Knex.",
"main": "index.js",
"homepage": "https://github.com/azuqua/cassanknex",
"repository": {
"type": "git",
"url": "https://github.com/azuqua/cassanknex.git"
},
"bugs": {
"url": "https://github.com/azuqua/cassanknex/issues"
},
"directories": {
"test": "tests"
},
"scripts": {
"test": "nyc mocha --check-leaks tests/*.js",
"test:live": "mocha --check-leaks --global __coverage__ tests/live/*.js",
"test:ci": "npm run lint && npm run test",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
"author": "austin brown <[email protected]> (http://www.azuqua.com/)",
"license": "MIT",
"dependencies": {
"cassandra-driver": "^4.7.2",
"inherits": "^2.0.4",
"lodash": "^4.17.21"
},
"devDependencies": {
"async": "^3.1.0",
"chai": "^4.2.0",
"eslint": "^8.27.0",
"mocha": "^6.2.0",
"mocha-junit-reporter": "^2.2.0",
"nyc": "^15.1.0",
"uuid": "^3.3.3"
},
"keywords": [
"cql",
"query",
"builder",
"cassandra",
"datastax",
"driver"
],
"engines": {
"node": ">=0.10"
}
}