forked from snowflakedb/snowflake-connector-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.76 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "snowflake-sdk",
"version": "1.9.3",
"description": "Node.js driver for Snowflake",
"dependencies": {
"@aws-sdk/client-s3": "^3.388.0",
"@aws-sdk/node-http-handler": "^3.374.0",
"@azure/storage-blob": "^12.11.0",
"@google-cloud/storage": "^7.7.0",
"@techteamer/ocsp": "1.0.1",
"agent-base": "^6.0.2",
"asn1.js-rfc2560": "^5.0.0",
"asn1.js-rfc5280": "^3.0.0",
"axios": "^1.6.5",
"big-integer": "^1.6.43",
"bignumber.js": "^9.1.2",
"binascii": "0.0.2",
"bn.js": "^5.2.1",
"browser-request": "^0.3.3",
"debug": "^3.2.6",
"expand-tilde": "^2.0.2",
"extend": "^3.0.2",
"fast-xml-parser": "^4.2.5",
"fastest-levenshtein": "^1.0.16",
"generic-pool": "^3.8.2",
"glob": "^9.0.0",
"https-proxy-agent": "^7.0.2",
"jsonwebtoken": "^9.0.0",
"mime-types": "^2.1.29",
"mkdirp": "^1.0.3",
"moment": "^2.29.4",
"moment-timezone": "^0.5.15",
"open": "^7.3.1",
"python-struct": "^1.1.3",
"simple-lru-cache": "^0.0.2",
"uuid": "^8.3.2",
"winston": "^3.1.0"
},
"devDependencies": {
"@aws-sdk/types": "^3.387.0",
"async": "^3.2.3",
"eslint": "^8.41.0",
"mocha": "^10.2.0",
"mock-require": "^3.0.3",
"nyc": "^15.1.0",
"test-console": "^2.0.0"
},
"peerDependencies": {
"asn1.js": "^5.4.1"
},
"overrides": {
"semver": "^7.5.2"
},
"repository": {
"type": "git",
"url": "https://github.com/snowflakedb/snowflake-connector-nodejs"
},
"scripts": {
"lint:check": "eslint",
"lint:check:all": "eslint lib samples system_test test",
"lint:check:all:errorsOnly": "npm run lint:check:all -- --quiet",
"lint:fix": "eslint --fix",
"test": "mocha -timeout 180000 --recursive --full-trace test/unit/**/*.js test/unit/*.js",
"test:integration": "mocha -timeout 180000 --recursive --full-trace test/integration/**/*.js test/integration/*.js",
"test:single": "mocha -timeout 180000 --full-trace",
"test:system": "mocha -timeout 180000 --recursive --full-trace system_test/*.js",
"test:unit": "mocha -timeout 180000 --recursive --full-trace test/unit/**/*.js test/unit/*.js",
"test:unit:coverage": "nyc npm run test:unit",
"test:ci": "mocha -timeout 180000 --recursive --full-trace test/**/*.js",
"test:ci:coverage": "nyc npm run test:ci",
"test:ci:withSystemTests": "mocha -timeout 180000 --recursive --full-trace test/**/*.js system_test/*.js",
"test:ci:withSystemTests:coverage": "nyc npm run test:ci:withSystemTests",
"test:manual": "mocha -timeout 180000 --full-trace --full-trace test/integration/testManualConnection.js"
},
"author": {
"name": "Snowflake Computing, Inc.",
"email": "[email protected]",
"url": "https://www.snowflake.com/"
},
"license": "Apache-2.0"
}