-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.64 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.64 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
61
62
63
64
65
{
"name": "@loopback/sequelize",
"description": "Loopback 4 Extension That Provides Sequelize Crud Repository Compatible With Default Loopback Models.",
"version": "0.8.7",
"keywords": [
"loopback-extension",
"loopback",
"sequelize-connector",
"sequelize"
],
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "IBM Corp. and LoopBack contributors",
"copyright.owner": "IBM Corp. and LoopBack contributors",
"repository": {
"type": "git",
"url": "https://github.com/loopbackio/loopback-next.git",
"directory": "extensions/sequelize"
},
"engines": {
"node": "20 || 22 || 24"
},
"scripts": {
"build": "lb-tsc",
"build:watch": "lb-tsc --watch",
"pretest": "npm run rebuild",
"test": "lb-mocha \"dist/__tests__/**/*.js\"",
"clean": "lb-clean dist *.tsbuildinfo .eslintcache",
"rebuild": "npm run clean && npm run build"
},
"publishConfig": {
"access": "public"
},
"files": [
"README.md",
"dist",
"src",
"!*/__tests__",
"!dist/.sandbox"
],
"peerDependencies": {
"@loopback/core": "^7.0.0",
"@loopback/repository": "^8.0.1"
},
"dependencies": {
"debug": "^4.4.3",
"sequelize": "^6.37.8",
"tslib": "^2.8.1"
},
"devDependencies": {
"@loopback/boot": "^8.0.11",
"@loopback/build": "^12.0.10",
"@loopback/core": "^7.0.10",
"@loopback/repository": "^8.0.10",
"@loopback/rest": "^15.0.11",
"@loopback/testlab": "^8.0.10",
"@types/node": "^16.18.126",
"oracledb": "^6.10.0",
"pg": "^8.20.0",
"pg-hstore": "^2.3.4",
"sqlite3": "6.0.1",
"typescript": "~5.2.2"
}
}