-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.5 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
{
"name": "snowflake-multisql",
"version": "1.7.1",
"description": "Multi SQL Statement, Promise-based, TypeScript wrapper for Snowflake SDK",
"repository": "github:brugos/snowflake-multisql",
"bugs": "https://github.com/brugos/snowflake-multisql/issues",
"license": "MIT",
"author": "J Brugos <[email protected]>",
"keywords": [
"snowflake",
"database",
"data warehouse",
"multi sql",
"multi statement"
],
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"scripts": {
"prepare": "del-cli build && tsc",
"test": "mocha --timeout 60000",
"test:watch": "yarn test -w",
"test:coverage": "yarn test && open && open ./coverage/lcov-report/index.ts.html",
"lint:eslint": "eslint ./ --ext .ts --max-warnings 0",
"lint": "tsc --noEmit"
},
"engines": {
"node": ">=10"
},
"devDependencies": {
"@types/chai": "^4.2.15",
"@types/chai-as-promised": "^7.1.3",
"@types/chai-subset": "^1.3.3",
"@types/expect": "^24.3.0",
"@types/mocha": "^8.2.1",
"@types/node": "^14.14.20",
"@types/sinon": "^9.0.10",
"chai": "^4.3.0",
"chai-as-promised": "^7.1.1",
"chai-subset": "^1.6.0",
"del-cli": "^3.0.1",
"dotenv": "^8.2.0",
"eslint": "^7.17.0",
"mocha": "^8.3.0",
"nyc": "^15.1.0",
"sinon": "^9.2.4",
"ts-mocha": "^8.0.0",
"ts-node": "^9.1.1",
"tsconfig-paths": "^3.9.0",
"tslog": "^3.0.5",
"typescript": "^3.9.7"
},
"dependencies": {
"snowflake-promise": "^4.5.0"
}
}