-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.9 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
{
"name": "mysql-with-kysely",
"version": "0.2.2",
"description": "Use MySQL with kysely",
"repository": {
"type": "git",
"url": "git+https://github.com/kanziw/mysql-with-kysely.git"
},
"homepage": "https://github.com/kanziw/mysql-with-kysely#readme",
"keywords": [
"mysql",
"kysely",
"query builder",
"Incorrect arguments to mysqld_stmt_execute",
"kanziw"
],
"author": {
"name": "Jiwoong Jung",
"email": "kanziwoong@gmail.com"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"packageManager": "yarn@3.2.0",
"scripts": {
"clean": "rimraf dist/",
"build": "yarn clean && tsc",
"db:sync": "mysqldef -uroot -proot test < ddl.sql && sql-ts -c dbconfig.json",
"lint": "eslint .",
"test": "jest",
"test:integration": "jest -c jest-integration.config.js",
"publish": "yarn build && yarn publish-if-not-published"
},
"dependencies": {
"@kanziw/error": "^0.0.4",
"@kanziw/time": "^0.0.3",
"jest-mock-extended": "^2.0.5",
"kysely": "^0.18.1",
"mysql2": "^2.3.3"
},
"peerDependencies": {
"kysely": "^0.18.1",
"mysql2": "^2.3.3"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@rmp135/sql-ts": "^1.13.0",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.25",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"babel-jest": "^27.5.1",
"eslint": "^8.14.0",
"eslint-config-kanziw": "^0.0.1",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.1.0",
"eslint-plugin-promise": "^6.0.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lodash": "^4.17.21",
"publish-if-not-published": "^3.1.2",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3"
},
"license": "MIT"
}