forked from dresende/node-orm2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.28 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2.28 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
53
54
55
56
57
58
59
60
{
"author": "Rafal Okninski <hpn777@gmail.com>",
"name": "orm3",
"description": "NodeJS Object-relational mapping",
"keywords": [
"orm",
"odm",
"database",
"mysql",
"postgres",
"redshift",
"sqlite"
],
"version": "9.3.1",
"license": "MIT",
"homepage": "https://github.com/hpn777/node-orm3",
"repository": "https://github.com/hpn777/node-orm3.git",
"main": "./dist/ORM.js",
"types": "./dist/ORM.d.ts",
"scripts": {
"prepare": "npm run build",
"build": "tsc || true",
"build:watch": "tsc --watch",
"prepublishOnly": "npm run build",
"test": "npm run build && node test/run",
"test:sqlite": "npm run build && ORM_PROTOCOL=sqlite node test/run",
"test:mysql": "npm run build && ORM_PROTOCOL=mysql node test/run",
"test:postgres": "npm run build && ORM_PROTOCOL=postgres node test/run",
"test:redshift": "npm run build && ORM_PROTOCOL=redshift node test/run",
"test:questdb": "npm run build && ORM_PROTOCOL=questdb node test/run",
"test:docker:mysql": "docker compose -f docker-compose.test.yml run --rm -e ORM_PROTOCOL=mysql test-runner bash -c 'npm ci && npm run build && ORM_PROTOCOL=mysql node test/run'",
"test:docker:postgres": "docker compose -f docker-compose.test.yml run --rm -e ORM_PROTOCOL=postgres test-runner bash -c 'npm ci && npm run build && ORM_PROTOCOL=postgres node test/run'",
"test:docker:redshift": "docker compose -f docker-compose.test.yml run --rm -e ORM_PROTOCOL=redshift test-runner bash -c 'npm ci && npm run build && ORM_PROTOCOL=redshift node test/run'",
"test:docker:questdb": "docker compose -f docker-compose.test.yml run --rm -e ORM_PROTOCOL=questdb test-runner bash -c 'npm ci && npm run build && ORM_PROTOCOL=questdb node test/run'",
"test:full": "npm run build && node test/run"
},
"engines": {
"node": ">= 18.0.0"
},
"analyse": false,
"dependencies": {
"async": "~3.2.6",
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/async": "^3.2.25",
"@types/lodash": "^4.17.13",
"@types/node": "^20.14.14",
"chalk": "~5.3.0",
"glob": "~11.0.0",
"mocha": "~10.8.2",
"mysql": "~2.18.1",
"pg": "~8.13.1",
"semver": "^7.6.3",
"should": "~13.2.3",
"sinon": "~19.0.2",
"sqlite3": "~5.1.7",
"typescript": "^5.6.3"
}
}