This repository has been archived by the owner on May 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.61 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
70
71
{
"name": "@egomobile/orm-pg",
"version": "0.22.1",
"description": "A PostgreSQL data adapter and other utilities for @egomobile/orm module.",
"main": "lib/index.js",
"engines": {
"node": ">=18.0.0"
},
"files": [
"CHANGELOG.md",
"LICENSE",
"lib",
"!lib/**/*.map",
"README.md"
],
"keywords": [
"node",
"js",
"ts",
"javascript",
"typescript",
"orm",
"mapper",
"entity",
"entities",
"migration",
"migrations",
"db",
"database",
"pg",
"postgres",
"ego"
],
"scripts": {
"build": "del ./lib && tsc",
"docs:generate": "del ./docs && typedoc --out ./docs ./src",
"lint": "eslint -c .eslintrc.js --ext .ts src",
"lint:fix": "eslint --fix -c .eslintrc.js --ext .ts src",
"sandbox": "nodemon --watch './sandbox/index.ts' ./sandbox/index.ts --inspect=0.0.0.0:9229"
},
"repository": {
"type": "git",
"url": "https://github.com/egomobile/node-orm-pg"
},
"author": "Next.e.GO Mobile SE, Aachen, Germany",
"license": "LGPL-3.0",
"dependencies": {
"change-case": "4.1.2",
"sanitize-filename": "1.6.3"
},
"devDependencies": {
"@egomobile/orm": "^0.15.0",
"@egomobile/tsconfig": "^5.0.0",
"@types/node": "18.17.6",
"@types/pg": "8.11.0",
"@types/pg-cursor": "2.7.2",
"del-cli": "5.1.0",
"eslint": "8.56.0",
"eslint-config-ego": "^0.19.0",
"nodemon": "3.0.3",
"pg": "8.11.3",
"pg-cursor": "2.10.3",
"ts-node": "10.9.2",
"typedoc": "0.25.8",
"typescript": "4.7.4"
},
"peerDependencies": {
"@egomobile/orm": ">= 0.15.0",
"pg": ">= 8.11.3"
}
}