-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
45 lines (45 loc) · 1.04 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
{
"name": "kiss-orm",
"description": "An extremely simple and explicit ORM for TypeScript",
"repository": "github:Seb-C/kiss-orm",
"homepage": "https://github.com/Seb-C/kiss-orm",
"license": "MIT",
"author": "Sébastien Caparros",
"version": "2.0.3",
"engines": {
"node": ">= 12.0.0"
},
"peerDependencies": {
"mysql": "^2.18.1",
"pg": "^8.5.1",
"pg-format": "^1.0.4",
"pg-pool": "^3.2.2",
"sqlite3": "^5.0.0"
},
"devDependencies": {
"@types/jasmine": "^3.6.2",
"@types/mysql": "^2.15.17",
"@types/pg": "^7.14.7",
"@types/pg-format": "^1.0.1",
"@types/pg-pool": "^2.0.2",
"@types/sqlite3": "^3.1.6",
"@types/sqlstring": "^2.3.0",
"jasmine": "^3.6.3",
"mysql": "^2.18.1",
"pg": "^8.5.1",
"pg-format": "^1.0.4",
"pg-pool": "^3.2.2",
"sqlite3": "^5.0.0",
"sqlstring": "^2.3.2",
"ts-node": "^10.9.1",
"typescript": "^4.1.3"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"prepare": "tsc"
}
}