-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
59 lines (59 loc) · 2.8 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
{
"name": "sql-client",
"version": "3.0.0",
"description": "A dirt-simple SQL client abstraction (currently) supporting PostgreSQL, MySQL and SQLite.",
"keywords": [
"SQL",
"client",
"connection",
"pool",
"database",
"Postgres",
"PostgeSQL",
"mySQL",
"SQLite",
"SQLite3"
],
"repository": {
"type": "git",
"url": "https://github.com/intellinote/sql-client.git"
},
"bugs": {
"url": "https://github.com/intellinote/sql-client/issues"
},
"license": "MIT",
"author": "Intellinote <https://www.intellinote.net/>",
"dependencies": {
"argf": "^0",
"yargs": "^17"
},
"devDependencies": {
"coffeescript": "^2",
"mocha": "^9",
"nyc": "^15",
"should": "^13"
},
"databaseSpecificDependencies": {
"// NOTE": "Enable one or more of these to test the corresponding database client.",
"mysql": "^2",
"sqlite3": "^5",
"pg": "^8"
},
"main": "lib/index.js",
"scripts": {
"test": "./node_modules/.bin/mocha -t 2000 -R list --require coffeescript/register test/test-connection-factory.coffee test/test-index.coffee test/test-sql-client-pool.coffee test/test-sql-client.coffee test/test-mysql-client.coffee test/test-postgresql-client.coffee test/test-postgresql-client2.coffee test/test-sqlite3-client.coffee",
"test-nodb": "./node_modules/.bin/mocha -t 2000 -R list --require coffeescript/register test/test-connection-factory.coffee test/test-index.coffee test/test-sql-client-pool.coffee test/test-sql-client.coffee",
"test-all": "./node_modules/.bin/mocha -t 2000 -R list --require coffeescript/register test/test-connection-factory.coffee test/test-index.coffee test/test-sql-client-pool.coffee test/test-sql-client.coffee test/test-mysql-client.coffee test/test-postgresql-client.coffee test/test-postgresql-client2.coffee test/test-sqlite3-client.coffee",
"test-pg": "./node_modules/.bin/mocha -t 2000 -R list --require coffeescript/register test/test-connection-factory.coffee test/test-index.coffee test/test-sql-client-pool.coffee test/test-sql-client.coffee test/test-postgresql-client.coffee test/test-postgresql-client2.coffee",
"test-sqlite": "./node_modules/.bin/mocha -t 2000 -R list --require coffeescript/register test/test-connection-factory.coffee test/test-index.coffee test/test-sql-client-pool.coffee test/test-sql-client.coffee test/test-sqlite3-client.coffee",
"test-mysql": "./node_modules/.bin/mocha -t 2000 -R list --require coffeescript/register test/test-connection-factory.coffee test/test-index.coffee test/test-sql-client-pool.coffee test/test-sql-client.coffee test/test-mysql-client.coffee"
},
"bin": {
"mysql-runner": "./bin/mysql-runner",
"postgresql-runner": "./bin/postgresql-runner",
"sqlite3-runner": "./bin/sqlite3-runner"
},
"engines": {
"node": ">=12"
}
}