-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.04 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
{
"name": "@getdelta/aws-sigv4-auth-cassandra",
"version": "1.0.1",
"description": "A sigv4 authentication plugin for open-source Datastax NodeJS Driver for Apache Cassandra",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/*",
"package.json"
],
"author": "Delta",
"repository": {
"url": "https://github.com/getdelta/aws-sigv4-auth-cassandra"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"scripts": {
"clean": "rm -rf dist",
"build": "yarn clean && tsup index.ts --clean --minify --keep-names --dts --out-dir dist",
"build:watch": "yarn clean && tsup index.ts --clean --minify --keep-names --dts --watch --out-dir dist",
"check:typescript": "tsc --noEmit --skipLibCheck --project ."
},
"dependencies": {
"@aws-sdk/credential-providers": "^3.288.0",
"cassandra-driver": "^4.6.4",
"crypto-js": "^4.0.0"
},
"devDependencies": {
"chai": "^4.2.0",
"jsdoc": "^3.6.4",
"mocha": "^7.2.0",
"tsup": "^6.6.3",
"typescript": "^4.9.5"
}
}