-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
80 lines (80 loc) · 2.11 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
{
"name": "mongoose-slugger-plugin",
"description": "Mongoose plugin to automatically generate so called slugs (atomically)",
"author": "Philipp Katz <[email protected]>",
"version": "6.1.1",
"main": "dist/slugger.js",
"types": "dist/slugger.d.ts",
"license": "MIT",
"bugs": {
"url": "https://github.com/qqilihq/mongoose-slugger/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/qqilihq/mongoose-slugger.git"
},
"keywords": [
"mongoose",
"mongodb",
"slug",
"typescript",
"mongoose-plugin"
],
"scripts": {
"test": "jest",
"test:watch": "jest --watch --coverage=false",
"lint": "eslint --ext .ts ./lib ./test",
"build": "tsc -p tsconfig.build.json",
"clean": "rimraf ./coverage ./dist",
"preversion": "run-s clean lint test build",
"pretest": "cross-env MONGOMS_DISABLE_POSTINSTALL=false node ./node_modules/mongodb-memory-server-global/postinstall.js",
"prepare": "husky install"
},
"dependencies": {
"limax": "^4.1.0",
"semver": "^7.6.0"
},
"devDependencies": {
"@commitlint/cli": "^17.8.1",
"@shelf/jest-mongodb": "^4.2.0",
"@types/jest": "^29.5.12",
"@types/node": "^16",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-node": "^29.7.0",
"jest-junit": "^16.0.0",
"mongodb": "^6.5.0",
"mongodb-memory-server-global": "^9.2.0",
"mongoose": "^8.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"pretty-quick": "^4.0.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"peerDependencies": {
"mongoose": "^7.0.0 || ^8.0.0"
},
"engines": {
"node": ">=16"
},
"config": {
"mongodbMemoryServer": {
"version": "7.0.12",
"disablePostinstall": "1"
}
},
"volta": {
"node": "16.20.2",
"yarn": "1.22.19"
}
}