snowflake-pool
Version:
Snowflake connection pool
46 lines (45 loc) • 1.25 kB
JSON
{
"name": "snowflake-pool",
"version": "1.0.2",
"description": "Snowflake connection pool",
"main": "./dist/index.js",
"repository": "",
"scripts": {
"clean": "rm -rf ./dist",
"prebuild": "npm run clean",
"build": "tsc",
"test": "jest --detectOpenHandles --env jsdom",
"lint": "eslint -c .eslintrc.js --ext .ts --fix ./src",
"posttest": "npm run lint",
"watch": "tsc --watch",
"prepare-release": "npm run build",
"publish-release": "npm run prepare-release && npm install && npm publish"
},
"keywords": [
"snowflake",
"connection",
"pool",
"promise"
],
"author": "Jacob Orshalick",
"license": "MIT",
"dependencies": {
"generic-pool": "^3.7.8",
"snowflake-promise": "^4.5.0",
"snowflake-sdk": "^1.6.1"
},
"devDependencies": {
"@types/generic-pool": "^3.1.9",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"prettier": "^2.3.0",
"typescript": "^4.2.4"
},
"bugs": {
"url": "https://github.com/jorshali/snowflake-pool/issues"
},
"homepage": "https://github.com/jorshali/snowflake-pool"
}