forked from htunnicliff/knex-snowflake-dialect
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.07 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.07 KB
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
{
"name": "@luminati-io/knex-snowflake-dialect",
"version": "1.0.3-lum.18",
"description": "knex.js dialect for the Snowflake data warehouse",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"build": "tsc",
"clean": "rm -rf lib/",
"deploy": "npm version patch && npm publish --declaration",
"lint": "tslint --project tsconfig.json 'src/**/*'",
"lint-fix": "tslint --fix --project tsconfig.json 'src/**/*'",
"test": "npm run lint && jest --runInBand --silent --forceExit --detectOpenHandles",
"coverage": "jest --coverage --silent && open coverage/lcov-report/index.html",
"prepush": "npm test uspec",
"tslint-check": "tslint-config-prettier-check ./tslint.json",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/deliverr/knex-snowflake-dialect.git"
},
"author": "Emmet Murphy",
"keywords": [
"knex",
"snowflake"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/deliverr/knex-snowflake-dialect/issues"
},
"homepage": "https://github.com/deliverr/knex-snowflake-dialect#readme",
"jest": {
"automock": false,
"transform": {
".(ts)": "ts-jest"
},
"testEnvironment": "node",
"testRegex": "(\\.(ispec|uspec))\\.(ts)$",
"roots": [
"<rootDir>/test"
],
"moduleFileExtensions": [
"ts",
"js",
"json"
],
"collectCoverageFrom": [
"src/**/*.ts"
]
},
"dependencies": {
"lodash": "^4.18.1",
"@luminati-io/snowflake-sdk": "1.11.0-lum.5",
"@luminati-io/knex": "3.1.0-lum.2"
},
"devDependencies": {
"@types/jest": "29.5.8",
"@types/lodash": "4.14.201",
"@types/node": "14.18.2",
"chai": "4.3.7",
"eslint": "8.53.0",
"jest": "29.7.0",
"mocha": "10.2.0",
"mysql": "2.18.1",
"sinon": "17.0.1",
"sinon-chai": "3.7.0",
"ts-jest": "29.1.0",
"tslint": "6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-microsoft-contrib": "^6.2.0",
"typescript": "5.2.2"
}
}