-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.25 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.25 KB
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
{
"name": "knight-orm",
"version": "1.0.0-rc.1",
"description": "A light-weight non-invasive ORM",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"test": "docker compose up",
"build": "rm -rf lib && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/c0deritter/knight-orm.git"
},
"keywords": [
""
],
"author": "Coderitter GmbH",
"bugs": {
"url": "https://github.com/c0deritter/knight-orm/issues"
},
"homepage": "https://github.com/c0deritter/knight-orm#readme",
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/chai-as-promised": "^7.1.5",
"@types/mocha": "^9.1.1",
"@types/mysql": "^2.15.21",
"@types/pg": "^8.6.5",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"knight-change": "^2.0.0",
"knight-criteria": "^2.2.1",
"knight-log": "^2.0.0-rc.3",
"knight-sql": "^2.2.2",
"mariadb": "^3.0.0",
"mocha": "^10.0.0",
"mysql": "^2.18.1",
"mysql2": "^2.3.3",
"pg": "^8.7.3",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
},
"peerDependencies": {
"knight-change": "^2.0.0",
"knight-criteria": "^2.2.1",
"knight-log": "^2.0.0-rc.3",
"knight-sql": "^2.2.2"
}
}