@e22m4u/js-repository-mongodb-adapter 0.1.1 → 0.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.husky/commit-msg CHANGED
@@ -1,4 +1 @@
1
- #!/bin/sh
2
- . "$(dirname "$0")/_/husky.sh"
3
-
4
- npx --no -- commitlint --edit "${1}"
1
+ npx --no -- commitlint --edit $1
package/.husky/pre-commit CHANGED
@@ -1,6 +1,3 @@
1
- #!/usr/bin/env sh
2
- . "$(dirname -- "$0")/_/husky.sh"
3
-
4
1
  npm run lint:fix
5
2
  npm run format
6
3
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@e22m4u/js-repository-mongodb-adapter",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "description": "MongoDB адаптер для @e22m4u/js-repository",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
@@ -13,11 +13,11 @@
13
13
  "format": "prettier --write \"./src/**/*.js\"",
14
14
  "test": "eslint . && c8 --reporter=text-summary mocha",
15
15
  "test:coverage": "eslint . && c8 --reporter=text mocha",
16
- "prepare": "npx husky install"
16
+ "prepare": "husky"
17
17
  },
18
18
  "repository": {
19
19
  "type": "git",
20
- "url": "https://github.com/e22m4u/js-repository-mongodb-adapter.git"
20
+ "url": "https://gitflic.ru/project/e22m4u/js-repository-mongodb-adapter.git"
21
21
  },
22
22
  "keywords": [
23
23
  "MongoDB",
@@ -26,34 +26,33 @@
26
26
  "ODM",
27
27
  "Database",
28
28
  "Datasource",
29
- "Relation",
30
- "Inclusion"
29
+ "Relations"
31
30
  ],
32
- "author": "e22m4u <e22m4u@gmail.com>",
31
+ "author": "e22m4u <e22m4u@yandex.ru>",
33
32
  "license": "MIT",
34
- "homepage": "https://github.com/e22m4u/js-repository-mongodb-adapter",
33
+ "homepage": "https://gitflic.ru/project/e22m4u/js-repository-mongodb-adapter",
35
34
  "dependencies": {
36
35
  "mongodb": "5.9.2"
37
36
  },
38
37
  "peerDependencies": {
39
38
  "@e22m4u/js-format": "*",
40
39
  "@e22m4u/js-service": "*",
41
- "@e22m4u/js-repository": "~0.1.1"
40
+ "@e22m4u/js-repository": "~0.1.3"
42
41
  },
43
42
  "devDependencies": {
44
- "@commitlint/cli": "^18.4.3",
45
- "@commitlint/config-conventional": "^18.4.3",
46
- "c8": "^8.0.1",
47
- "chai": "^4.3.10",
43
+ "@commitlint/cli": "^18.6.1",
44
+ "@commitlint/config-conventional": "^18.6.1",
45
+ "c8": "^9.1.0",
46
+ "chai": "^4.4.1",
48
47
  "chai-as-promised": "^7.1.1",
49
48
  "chai-spies": "^1.1.0",
50
- "dotenv": "^16.3.1",
49
+ "dotenv": "^16.4.3",
51
50
  "eslint": "^8.56.0",
52
51
  "eslint-config-prettier": "^9.1.0",
53
52
  "eslint-plugin-chai-expect": "^3.0.0",
54
53
  "eslint-plugin-mocha": "^10.2.0",
55
- "husky": "^8.0.3",
56
- "mocha": "^10.2.0",
57
- "prettier": "^3.1.1"
54
+ "husky": "^9.0.10",
55
+ "mocha": "^10.3.0",
56
+ "prettier": "^3.2.5"
58
57
  }
59
58
  }