forked from qqilihq/mongoose-slugger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.88 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
{
"name": "mongoose-slugger-plugin",
"description": "Mongoose plugin to automatically generate so called slugs (atomically)",
"author": "Philipp Katz <philipp@philippkatz.de>",
"version": "3.0.3",
"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",
"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"
},
"dependencies": {
"limax": "^3.0.0"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@shelf/jest-mongodb": "^2.0.3",
"@types/jest": "^27.0.1",
"@types/mongoose": "^5.7.36",
"@types/node": "^12",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^4.3.0",
"jest": "^27.2.0",
"jest-junit": "^12.2.0",
"mongodb-memory-server-global": "^7.4.0",
"mongoose": "^6.6.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1",
"pretty-quick": "^3.1.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"peerDependencies": {
"mongoose": "^6.6.1 || ^7.0.0"
},
"engines": {
"node": ">=12"
},
"config": {
"mongodbMemoryServer": {
"version": "3.4.6",
"disablePostinstall": "1"
}
}
}