-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
96 lines (96 loc) · 2.91 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "sqlectron-db-core",
"version": "0.11.0",
"description": "sqlectron-db-core",
"main": "dist/index.js",
"author": "The SQLECTRON Team",
"license": "MIT",
"scripts": {
"compile": "tsc",
"watch": "tsc -w",
"check-types": "tsc --noemit --project tsconfig.json",
"eslint": "eslint . --ext .js,.jsx,.ts",
"lint": "npm run eslint && npm run check-types",
"format": "prettier --write \"**/*.{js,ts,json,md}\"",
"format:check": "prettier --check \"**/*.{js,ts,json,md}\"",
"test:mysql": "DB_ADAPTERS=mysql npm run test",
"test:mariadb": "DB_ADAPTERS=mariadb npm run test",
"test:sqlite": "DB_ADAPTERS=sqlite npm run test",
"test:sqlserver": "DB_ADAPTERS=sqlserver npm run test",
"test:postgresql": "DB_ADAPTERS=postgresql npm run test",
"test:redshift": "DB_ADAPTERS=redshift npm run test",
"test:cassandra": "DB_ADAPTERS=cassandra npm run test",
"test": "mocha --exit --timeout 40000 --require ts-node/register --reporter spec \"./spec/**/*.spec.ts\"",
"test:coverage": "nyc --reporter=text mocha --exit --timeout 4000 --require ts-node/register --reporter spec \"./spec/**/*.spec.ts\"",
"watch-test": "mocha --require ts-node/register --watch --reporter spec \"./spec/**/*.spec.ts\"",
"prepublishOnly": "echo \"Do not run publish directly, run publisher\" && exit 1",
"publisher": "publisher",
"prepare": "husky install"
},
"keywords": [
"sqlectron",
"sql",
"postgres",
"mysql"
],
"repository": {
"type": "git",
"url": "https://github.com/sqlectron/sqlectron-db-core"
},
"engines": {
"node": ">= 12.13"
},
"dependencies": {
"cassandra-driver": "^3.1.1",
"debug": "^4.3.1",
"mssql": "^6.2.1",
"mysql2": "^2.2.0",
"pg": "^8.5.1",
"sql-query-identifier": "^2.2.4",
"sqlite3": "^5.0.2",
"ssh2": "^1.6.0"
},
"devDependencies": {
"@masterodin/publisher": "^0.8.0",
"@types/cassandra-driver": "^3.6.0",
"@types/chai": "^4.2.14",
"@types/chai-as-promised": "^7.1.3",
"@types/debug": "^4.1.5",
"@types/mocha": "^8.2.0",
"@types/mssql": "^6.0.7",
"@types/pg": "^7.14.7",
"@types/sql-query-identifier": "^1.1.0",
"@types/sqlite3": "^3.1.6",
"@types/ssh2": "^0.5.46",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"connection-string": "^3.4.2",
"eslint": "^7.16.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^5.2.0",
"lint-staged": "^10.5.4",
"mocha": "^9.2.0",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"sinon": "^7.5.0",
"ts-node": "^9.1.1",
"typescript": "^4.5.5"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"include": "src/**/*.ts",
"exclude": "spec/**/*.spec.ts"
},
"publisherrc": {
"steps": [
"lint",
"compile"
]
}
}