-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
77 lines (77 loc) · 1.92 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
{
"name": "mongoose-history-diff",
"version": "0.0.0-semantically-released",
"description": "A mongoose plugin to take diffs and history of your documents",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"/lib"
],
"repository": {
"type": "git",
"url": "https://github.com/borodayev/mongoose-history-diff.git"
},
"keywords": [
"mongoose-history-diff",
"mongoose-diff-history",
"mongoose-diff",
"mongoose-diff-plugin",
"mongoose-history",
"mongoose-difference",
"mongoose-version",
"mongoose diff",
"diff",
"differences",
"deep-diff"
],
"bugs": {
"url": "https://github.com/borodayev/mongoose-history-diff/issues"
},
"homepage": "https://github.com/borodayev/mongoose-history-diff",
"license": "MIT",
"peerDependencies": {
"mongoose": "^5.12.5"
},
"devDependencies": {
"@types/jest": "^26.0.22",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.25.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.5",
"eslint-plugin-prettier": "^3.4.0",
"jest": "26.6.3",
"mongodb-memory-server": "^6.9.6",
"prettier": "^2.2.1",
"semantic-release": "^17.4.2",
"ts-jest": "^26.5.5",
"typescript": "^4.2.4"
},
"publishConfig": {
"access": "public"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"jest": {
"testEnvironment": "node",
"transform": {
"^.+\\.ts$": "ts-jest"
},
"roots": [
"<rootDir>/src"
]
},
"scripts": {
"build": "yarn tsc",
"watch": "jest --watch",
"coverage": "jest --coverage --maxWorkers 2",
"lint": "eslint --ext .ts ./src",
"test": "yarn coverage && yarn lint",
"semantic-release": "semantic-release"
}
}