-
Notifications
You must be signed in to change notification settings - Fork 121
/
Copy pathpackage.json
42 lines (42 loc) · 1.02 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
{
"name": "reltab-snowflake",
"version": "0.14.0",
"description": "Snowflake driver for reltab",
"main": "dist/reltab-snowflake.js",
"types": "dist/reltab-snowflake.d.ts",
"scripts": {
"prepublish": "npm run build",
"clean": "rimraf dist",
"build": "tsc",
"test": "jest --config jest.config.json --no-cache",
"test-resnap": "jest --config jest.config.json --updateSnapshot"
},
"keywords": [
"relational",
"sql",
"database",
"snowflake"
],
"author": "Antony Courtney <antony@antonycourtney.com>",
"license": "MIT",
"dependencies": {
"loglevel": "^1.8.0",
"snowflake-sdk": "^1.6.6"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/node": "^18.7.18",
"@types/snowflake-sdk": "^1.6.2",
"aggtree": "^0.12.0",
"console.table": "^0.10.0",
"jest": "^27.4.6",
"mkdirp": "^1.0.4",
"prettier": "^2.5.1",
"reltab": "^0.12.0",
"ts-jest": "^27.1.2",
"typescript": "^4.8.3"
},
"peerDependencies": {
"reltab": "^0.12.0"
}
}