-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
49 lines (49 loc) · 1.37 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": "scyllo",
"description": "The Cassandra/Scylla library you didn't want but got anyways.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/lvkdotsh/scyllo.git"
},
"author": "Lucemans <[email protected]>",
"files": [
"lib"
],
"keywords": [
"cassandra",
"scylla",
"scyllo",
"database",
"client"
],
"license": "LGPL-3.0-or-later",
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "^18.11.17",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"chalk": "^4.1.2",
"eslint": "^8.6.0",
"eslint-plugin-jest": "^25.3.4",
"eslint-plugin-lvksh": "^1.2.2",
"jest": "^27.2.5",
"jest-nyancat-reporter": "^2.0.0",
"ts-jest": "^27.0.5",
"ts-node": "^10.4.0",
"tslint": "^6.1.3",
"typescript": "^4.4.3",
"typescript-eslint": "^0.0.1-alpha.0"
},
"scripts": {
"test": "yarn build && jest --verbose",
"build": "tsc",
"lint": "eslint -c .eslintrc.json --ext .ts ./src",
"pub": "yarn build && yarn publish --access public"
},
"dependencies": {
"@lvksh/logger": "^1.6.3",
"cassandra-driver": "^4.6.3"
}
}