forked from sutandojs/sutando
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.31 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
{
"name": "sutando",
"version": "1.0.2",
"packageManager": "[email protected]",
"description": "A modern Node.js ORM. Makes it enjoyable to interact with your database. Support Mysql, MSSql, MariaDB, Sqlite.",
"homepage": "https://sutando.org/",
"main": "./src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/sutandojs/sutando.git"
},
"engines": {
"node": ">=14",
"pnpm": ">=4"
},
"scripts": {
"test:mysql": "jest --client=mysql",
"test:postgres": "jest --client=postgres",
"test:sqlite": "jest --client=sqlite"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"collect.js": "^4.34.3",
"dayjs": "^1.11.5",
"knex": "^2.5.1",
"lodash": "^4.17.21",
"pluralize": "^8.0.0"
},
"devDependencies": {
"jest": "^29.0.3",
"mysql2": "2.3.3",
"pg": "8.8.0",
"sqlite3": "5.1.2",
"husky": "^8.0.1",
"prettier": "2.6.2",
"lint-staged": "^13.0.0",
"tedious": "15.1.0"
},
"keywords": [
"sutando",
"ORM",
"mysql",
"mariadb",
"sqlite",
"postgresql",
"postgres",
"pg",
"mssql"
],
"author": "Kidd Yu",
"readmeFilename": "README.md",
"license": "MIT"
}