-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1011 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
{
"name": "falsetto",
"version": "0.2.3",
"description": "Lightweight ODM for Apache Cassandra",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"test": "jest",
"build": "tsc",
"publish": "tsc && npm publish",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls"
},
"keywords": [
"apache cassandra"
],
"author": "Cameron Harris ([email protected])",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/ilikepi63/falsetto.git"
},
"homepage": "https://github.com/ilikepi63/falsetto",
"devDependencies": {
"@types/jest": "^26.0.22",
"@types/mocha": "^8.2.2",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"coveralls": "^3.1.0",
"eslint": "^7.23.0",
"jest": "^26.6.3",
"ts-jest": "^26.5.4",
"typescript": "^4.2.3"
},
"dependencies": {
"@types/node": "^14.14.37",
"cassandra-driver": "^4.6.2"
}
}