-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.04 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.04 KB
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": "@axonops/cqlai-node",
"version": "0.2.6",
"description": "Node.js bindings for CQLAI - Cassandra CQL shell",
"keywords": [
"cassandra",
"cql",
"database",
"nosql",
"scylla"
],
"homepage": "https://github.com/axonops/cqlai-node#readme",
"bugs": {
"url": "https://github.com/axonops/cqlai-node/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/axonops/cqlai-node.git"
},
"license": "Apache-2.0",
"author": "AxonOps",
"type": "commonjs",
"main": "index.js",
"directories": {
"doc": "docs",
"lib": "lib"
},
"files": [
"index.js",
"native.js",
"session.js",
"lib/",
"go/",
"scripts/",
"docs/"
],
"scripts": {
"postinstall": "node scripts/build.js",
"build": "node scripts/build.js",
"test": "node -e \"const {CQLSession} = require('.'); console.log('CQLSession loaded:', typeof CQLSession)\""
},
"dependencies": {
"koffi": "^2.9.0"
},
"devDependencies": {},
"engines": {
"node": ">=14.0.0"
}
}