-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.62 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
{
"name": "sk2",
"version": "1.1.2",
"description": "knex with sequelize query",
"main": "index.js",
"types": "types/index.d.ts",
"scripts": {
"build": "node scripts/copy.js && node scripts/dep.js",
"test": "nyc mocha --exit -R spec",
"report": "nyc report --reporter=html",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"db:start": "docker-compose -f docker-compose.yml up --build -d mysql mariadb postgres mssql; docker-compose -f docker-compose.yml up waitmssql waitmysql waitpostgres waitmariadb",
"db:stop": "docker-compose -f docker-compose.yml down"
},
"repository": {
"type": "git",
"url": "git+https://github.com/d-band/sk2.git"
},
"keywords": [
"knex",
"sequelize",
"mysql",
"mariadb",
"sqlite",
"postgres",
"mssql",
"database",
"query-builder"
],
"author": "d-band",
"license": "MIT",
"bugs": {
"url": "https://github.com/d-band/sk2/issues"
},
"homepage": "https://github.com/d-band/sk2#readme",
"devDependencies": {
"@babel/parser": "^7.12.5",
"@babel/traverse": "^7.12.5",
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"fs-extra": "^9.0.1",
"glob": "^7.1.6",
"knex": "^0.21.12",
"mariadb": "^2.5.1",
"mocha": "^8.2.1",
"mysql2": "^2.2.5",
"nyc": "^15.1.0",
"pg": "^8.4.2",
"pg-hstore": "^2.3.3",
"sequelize": "^6.3.5",
"sqlite3": "^5.0.0",
"tedious": "^9.2.1"
},
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"colorette": "^1.2.1",
"debug": "4.1.1",
"lodash": "^4.17.20",
"pg-connection-string": "^2.2.0",
"tarn": "^3.0.1"
}
}