|
2 | 2 | "name": "mongoose-history-diff",
|
3 | 3 | "version": "0.0.0-semantically-released",
|
4 | 4 | "description": "A mongoose plugin to take diffs and history of your documents",
|
5 |
| - "main": "/lib/index.js", |
6 |
| - "types": "/lib/index.d.ts", |
7 |
| - "files": ["/lib"], |
| 5 | + "main": "./lib/index.js", |
| 6 | + "types": "./lib/index.d.ts", |
| 7 | + "files": [ |
| 8 | + "./lib" |
| 9 | + ], |
8 | 10 | "repository": {
|
9 | 11 | "type": "git",
|
10 | 12 | "url": "https://github.com/borodayev/mongoose-history-diff.git"
|
|
28 | 30 | "homepage": "https://github.com/borodayev/mongoose-history-diff",
|
29 | 31 | "license": "MIT",
|
30 | 32 | "peerDependencies": {
|
31 |
| - "mongoose": "^5.9.12" |
| 33 | + "mongoose": "^5.9.28" |
32 | 34 | },
|
33 | 35 | "devDependencies": {
|
34 |
| - "@types/jest": "^25.2.1", |
35 |
| - "@types/mongoose": "^5.7.15", |
36 |
| - "@typescript-eslint/eslint-plugin": "^2.30.0", |
37 |
| - "@typescript-eslint/parser": "^2.30.0", |
38 |
| - "cz-conventional-changelog": "^3.1.0", |
39 |
| - "eslint": "^6.8.0", |
40 |
| - "eslint-config-airbnb-typescript": "^7.2.1", |
| 36 | + "@semantic-release/commit-analyzer": "^8.0.1", |
| 37 | + "@types/jest": "^26.0.9", |
| 38 | + "@types/mongoose": "^5.7.36", |
| 39 | + "@typescript-eslint/eslint-plugin": "^3.8.0", |
| 40 | + "@typescript-eslint/parser": "^3.8.0", |
| 41 | + "cz-conventional-changelog": "^3.2.0", |
| 42 | + "eslint": "^7.6.0", |
| 43 | + "eslint-config-airbnb-typescript": "^9.0.0", |
41 | 44 | "eslint-config-prettier": "^6.11.0",
|
42 |
| - "eslint-plugin-import": "^2.20.2", |
43 |
| - "eslint-plugin-jest": "^23.8.2", |
44 |
| - "eslint-plugin-prettier": "^3.1.3", |
45 |
| - "jest": "25.5.4", |
46 |
| - "mongodb-memory-server": "^6.5.2", |
| 45 | + "eslint-plugin-import": "^2.22.0", |
| 46 | + "eslint-plugin-jest": "^23.20.0", |
| 47 | + "eslint-plugin-prettier": "^3.1.4", |
| 48 | + "jest": "26.2.2", |
| 49 | + "mongodb-memory-server": "^6.6.3", |
47 | 50 | "prettier": "^2.0.5",
|
48 |
| - "semantic-release": "^17.0.7", |
49 |
| - "ts-jest": "^25.5.0", |
50 |
| - "typescript": "^3.8.3" |
| 51 | + "semantic-release": "^17.1.1", |
| 52 | + "ts-jest": "^26.1.4", |
| 53 | + "typescript": "^3.9.7" |
51 | 54 | },
|
52 | 55 | "publishConfig": {
|
53 | 56 | "access": "public"
|
|
57 | 60 | "path": "./node_modules/cz-conventional-changelog"
|
58 | 61 | }
|
59 | 62 | },
|
| 63 | + "release": { |
| 64 | + "branches": [ |
| 65 | + "master" |
| 66 | + ], |
| 67 | + "plugins": [ |
| 68 | + [ |
| 69 | + "@semantic-release/commit-analyzer", |
| 70 | + { |
| 71 | + "preset": "angular", |
| 72 | + "releaseRules": [ |
| 73 | + { |
| 74 | + "type": "docs", |
| 75 | + "scope": "README", |
| 76 | + "release": "patch" |
| 77 | + }, |
| 78 | + { |
| 79 | + "type": "refactor", |
| 80 | + "release": "patch" |
| 81 | + } |
| 82 | + ] |
| 83 | + } |
| 84 | + ], |
| 85 | + "@semantic-release/release-notes-generator" |
| 86 | + ] |
| 87 | + }, |
60 | 88 | "jest": {
|
61 | 89 | "testEnvironment": "node",
|
62 | 90 | "transform": {
|
|
0 commit comments