-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
80 lines (80 loc) · 2.04 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
{
"name": "knex-snowflake-dialect",
"version": "1.0.3",
"description": "knex.js dialect for the Snowflake data warehouse",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"directories": {
"lib": "lib"
},
"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"
},
"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": {
"bluebird": "^3.7.2",
"lodash": "^4.17.15",
"snowflake-sdk": "1.6.0"
},
"peerDependencies": {
"knex": "^1.0.1"
},
"devDependencies": {
"@types/bluebird": "3.5.29",
"@types/jest": "25.1.4",
"@types/lodash": "4.14.149",
"@types/node": "13.7.0",
"chai": "4.2.0",
"jest": "25.1.0",
"knex": "^1.0.1",
"mocha": "7.1.1",
"mysql": "2.18.1",
"sinon": "9.0.1",
"sinon-chai": "3.5.0",
"ts-jest": "25.2.1",
"tslint": "6.1.0",
"tslint-config-prettier": "1.18.0",
"tslint-microsoft-contrib": "6.2.0",
"typescript": "^4.3.4"
}
}