This repository has been archived by the owner on Sep 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
148 lines (148 loc) · 4.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
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
{
"name": "loopback4-sequelize",
"version": "2.3.0",
"description": "Loopback 4 Extension That Provides Sequelize Crud Repository Compatible With Default Loopback Models.",
"keywords": [
"loopback-extension",
"loopback",
"loopback4-sequelize",
"sequelize",
"repository"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": "14 || 16 || 17 || 18"
},
"scripts": {
"build": "lb-tsc",
"build:watch": "lb-tsc --watch",
"lint": "npm run eslint && npm run prettier:check",
"lint:fix": "npm run eslint:fix && npm run prettier:fix",
"prettier:cli": "lb-prettier \"**/*.ts\" \"**/*.js\"",
"prettier:check": "npm run prettier:cli -- -l",
"prettier:fix": "npm run prettier:cli -- --write",
"eslint": "lb-eslint --report-unused-disable-directives .",
"eslint:fix": "npm run eslint -- --fix",
"pretest": "npm run rebuild",
"test": "lb-mocha --allow-console-logs \"dist/__tests__\"",
"posttest": "npm run lint",
"test:dev": "lb-mocha --allow-console-logs dist/__tests__/**/*.js && npm run posttest",
"clean": "lb-clean dist *.tsbuildinfo .eslintcache",
"prepare": "husky install",
"rebuild": "npm run clean && npm run build",
"export-api-ref": "npx typedoc"
},
"repository": {
"type": "git",
"url": "https://github.com/sourcefuse/loopback4-sequelize"
},
"author": "Sourcefuse",
"license": "MIT",
"files": [
"README.md",
"dist",
"src",
"!*/__tests__"
],
"peerDependencies": {
"@loopback/core": "^4.0.9",
"@loopback/repository": "^5.1.4",
"@loopback/rest": "^12.0.9"
},
"dependencies": {
"debug": "^4.3.4",
"sequelize": "^6.28.0",
"tslib": "^2.0.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@loopback/boot": "^5.0.9",
"@loopback/build": "^9.0.9",
"@loopback/core": "^4.0.9",
"@loopback/eslint-config": "^13.0.9",
"@loopback/repository": "^5.1.4",
"@loopback/rest": "^12.0.9",
"@loopback/testlab": "^5.0.9",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^9.0.2",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/lodash": "^4.14.195",
"@types/node": "^14.18.36",
"@types/uuid": "^9.0.2",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"cz-customizable": "^7.0.0",
"cz-customizable-ghooks": "^2.0.0",
"eslint": "^8.35.0",
"git-release-notes": "^5.0.0",
"husky": "^8.0.3",
"jsdom": "^21.1.0",
"lodash": "^4.17.21",
"pg": "^8.8.0",
"pg-hstore": "^2.3.4",
"semantic-release": "^19.0.5",
"simple-git": "^3.16.1",
"source-map-support": "^0.5.21",
"sqlite3": "5.1.4",
"typedoc": "^0.24.0",
"typedoc-plugin-markdown": "^3.15.3",
"typescript": "~4.9.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
}
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"overrides": {
"git-release-notes": {
"ejs": "^3.1.8",
"yargs": "^17.6.2"
},
"@semantic-release/npm": {
"npm": "^9.4.2"
}
},
"release": {
"branches": [
"master"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "angular",
"releaseRules": [
{
"type": "chore",
"scope": "deps",
"release": "patch"
}
]
}
],
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"package.json",
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version} semantic"
}
],
"@semantic-release/github"
],
"repositoryUrl": "[email protected]:sourcefuse/loopback4-sequelize.git"
}
}